| 59 | } |
| 60 | |
| 61 | export interface FunctionalComponentOptions { |
| 62 | name?: string; |
| 63 | props?: string[] | { [key: string]: PropOptions | Constructor | Constructor[] }; |
| 64 | functional: boolean; |
| 65 | render(this: never, createElement: CreateElement, context: RenderContext): VNode | void; |
| 66 | } |
| 67 | |
| 68 | export interface RenderContext { |
| 69 | props: any; |
nothing calls this directly
no outgoing calls
no test coverage detected