UNPKG

@n8n/typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports PostgreSQL and SQLite databases.

9 lines (8 loc) 228 B
export declare class TimeoutTimer { private timeoutTimerId; private timerPromise; constructor(timeout: number); get promise(): Promise<void>; clear(): void; static start(timeout: number): TimeoutTimer; }