(
_text: string,
_rootContainerInstance: Container,
_hostContext: HostContext
// @ts-ignore
)
| 62 | ): Instance { |
| 63 | log.debug("createInstance"); |
| 64 | return createElement(type, props); |
| 65 | }, |
| 66 | |
| 67 | appendInitialChild(_parentInstance: Instance, _child: Instance | TextInstance): void { |
| 68 | log.debug("appendInitialChild"); |
| 69 | }, |
| 70 | |
| 71 | finalizeInitialChildren( |
| 72 | _parentInstance: Instance, |
| 73 | _type: Type, |
| 74 | _props: Props, |
nothing calls this directly
no outgoing calls
no test coverage detected