MCPcopy
hub / github.com/pixijs/pixi-react / BaseNodeProps

Interface BaseNodeProps

src/typedefs/PixiReactNode.ts:20–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18} from './UtilityTypes';
19
20export 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
29export type GraphicsProps<T> = T extends Graphics ?
30 { draw: DrawCallback } : unknown;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected