UNPKG

@pixi/utils

Version:

Collection of utilities used by PixiJS

7 lines (6 loc) 134 B
export type ArrayFixed<T, L extends number> = [T, ...Array<T>] & { length: L; }; export type Dict<T> = { [key: string]: T; };