kungfooman / RuntimeTypeInspector.js

Checking JSDoc types at runtime for high-quality types - Trust is good, control is better.
MIT License
8 stars 0 forks source link

Implement `JSXFragment` #199

Closed kungfooman closed 1 month ago

kungfooman commented 1 month ago

Example:

function App() {
  return <>
    <div>1</div>
    <div>2</div>
    <div>3</div>
  </>
}

Currently outputs:

import {inspectType, inspectTypeWithTemplates, youCanAddABreakpointHere, registerVariable, validateDivision, registerTypedef, registerClass, registerImportNamespaceSpecifier} from '@runtime-type-inspector/runtime';
export * from '@runtime-type-inspector/runtime';
function App() {
  return rtiUnhandled("JSXFragment");
;
}