lightning-pool
Version:
Fastest generic Pool written with TypeScript
12 lines (11 loc) • 316 B
TypeScript
import { Callback } from './definitions.js';
import { Pool } from './pool.js';
export declare class PoolRequest {
created: number;
callback: Callback;
options?: any;
timeoutHandle: any;
timedOut: boolean;
constructor(pool: Pool, callback?: Callback, options?: any);
stopTimout(): void;
}