| 6 | import { type PixiReactNode } from './PixiReactNode'; |
| 7 | |
| 8 | export interface HostConfig |
| 9 | { |
| 10 | childSet: never; |
| 11 | containerInstance: PixiReactNode<typeof Container>; |
| 12 | filterInstance: PixiReactNode<typeof Filter>; |
| 13 | formInstance: never, |
| 14 | hostContext: Record<string, unknown>; |
| 15 | hydratableInstance: never; |
| 16 | instance: PixiReactNode; |
| 17 | noTimeout: number; |
| 18 | props: Record<string, unknown>; |
| 19 | publicInstance: PixiReactNode; |
| 20 | suspenseInstance: PixiReactNode; |
| 21 | textInstance: PixiReactNode; |
| 22 | timeoutHandle: number; |
| 23 | type: keyof PixiElements; |
| 24 | updatePayload: object; |
| 25 | transitionStatus: null, |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected