UNPKG

277 BTypeScriptView Raw
1export interface TimeoutError extends Error {
2}
3export interface TimeoutErrorCtor {
4 new (): TimeoutError;
5}
6/**
7 * An error thrown when duetime elapses.
8 *
9 * @see {@link operators/timeout}
10 *
11 * @class TimeoutError
12 */
13export declare const TimeoutError: TimeoutErrorCtor;