Files
nothoughts/node_modules/pixi.js/lib/scene/container/bounds/utils/matrixAndBoundsPool.d.ts
2025-08-04 18:57:35 +02:00

10 lines
410 B
TypeScript

import { Matrix } from '../../../../maths/matrix/Matrix';
import { Pool } from '../../../../utils/pool/Pool';
import { Bounds } from '../Bounds';
import type { PoolItem } from '../../../../utils/pool/Pool';
type MatrixPoolItem = Matrix & PoolItem;
type BoundsPoolItem = Bounds & PoolItem;
export declare const matrixPool: Pool<MatrixPoolItem>;
export declare const boundsPool: Pool<BoundsPoolItem>;
export {};