1234567891011121314151617181920212223242526272829303132 |
- export = pool;
-
-
- type PoolAllocator = (size: number) => Uint8Array;
-
-
- type PoolSlicer = (this: Uint8Array, start: number, end: number) => Uint8Array;
-
-
- declare function pool(alloc: PoolAllocator, slice: PoolSlicer, size?: number): PoolAllocator;
|