UNPKG

@pixi/react

Version:

Write PixiJS applications using React declarative style.

22 lines (21 loc) 723 B
import { type Container, type Filter } from 'pixi.js'; import { type PixiElements } from './PixiElements'; import { type PixiReactNode } from './PixiReactNode'; export interface HostConfig { childSet: never; containerInstance: PixiReactNode<typeof Container>; filterInstance: PixiReactNode<typeof Filter>; formInstance: never; hostContext: Record<string, unknown>; hydratableInstance: never; instance: PixiReactNode; noTimeout: number; props: Record<string, unknown>; publicInstance: PixiReactNode; suspenseInstance: PixiReactNode; textInstance: PixiReactNode; timeoutHandle: number; type: keyof PixiElements; updatePayload: object; transitionStatus: null; }