| 18 | } from './UtilityTypes'; |
| 19 | |
| 20 | export interface BaseNodeProps<T extends new (...args: any) => any = typeof Container> |
| 21 | { |
| 22 | children?: T extends Container |
| 23 | ? PixiReactChildNode |
| 24 | : never; |
| 25 | key?: Key; |
| 26 | ref?: Ref<T>; |
| 27 | } |
| 28 | |
| 29 | export type GraphicsProps<T> = T extends Graphics ? |
| 30 | { draw: DrawCallback } : unknown; |
nothing calls this directly
no outgoing calls
no test coverage detected