pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
11 lines (10 loc) • 478 B
TypeScript
import { Matrix } from '../../../../maths/matrix/Matrix';
import { Bounds } from '../Bounds';
import type { PoolItem } from '../../../../utils/pool/Pool';
type MatrixPoolItem = Matrix & PoolItem;
type BoundsPoolItem = Bounds & PoolItem;
/** @internal */
export declare const matrixPool: import("../../../../utils/pool/Pool").Pool<MatrixPoolItem, any>;
/** @internal */
export declare const boundsPool: import("../../../../utils/pool/Pool").Pool<BoundsPoolItem, any>;
export {};