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