Type Alias: PoolConstructor<T>
> PoolConstructor<T> = () => Pool<T>
Defined in: node_modules/pixi.js/lib/utils/pool/PoolGroup.d.ts:9
A type alias for a constructor of a Pool.
Type Parameters
T
T extends PoolItem
The type of items in the pool. Must extend PoolItem.
Returns
Pool<T>
Advanced