UNPKG

pixi-reactive

Version:

A library to help integrate PIXI into a React project

12 lines (11 loc) 456 B
import { BlendModes, GenericEventType, GenericType, ImpactType, PropValue } from '../types'; export declare type GraphicsPropsType = { blendMode?: BlendModes; tint?: number; }; export declare enum GraphicsProps { BlendMode = "blendMode", Tint = "tint" } export declare type GraphicsPropsMap = Map<GraphicsProps, PropValue>; export declare type PixiGraphicsProps = GenericType & GenericEventType & ImpactType & GraphicsPropsType;