UNPKG

@pixi/react

Version:

Write PixiJS applications using React declarative style.

6 lines (5 loc) 210 B
import type * as PIXI from 'pixi.js'; export type PixiType = typeof PIXI; export type PixiComponents = { [K in keyof PixiType]: PixiType[K] extends new (...args: any) => any ? K : never; }[keyof PixiType];