* Use this to manually set the attributes of a custom element * * declare global { * namespace JSX { * interface IntrinsicElements { * 'hello-element': Props & { * propFromParent: string; * } * } * } * }
| 39 | * } |
| 40 | */ |
| 41 | interface CustomElementBaseAttributes extends ClassAttributes<any>, OmiDOMAttributes { } |
| 42 | interface Props extends ClassAttributes<any>, OmiDOMAttributes { } |
| 43 | /** |
| 44 | * Define the contract for a virtual node in omi. |
nothing calls this directly
no outgoing calls
no test coverage detected