// Type definitions for promise-timeout 1.3 // Project: https://github.com/building5/promise-timeout#readme // Definitions by: Aankhen // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped export function timeout(promise: Promise, timeoutMillis: number): Promise; export class TimeoutError extends Error { }