minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / util / TimeoutError.d.ts
1 export interface TimeoutError extends Error {
2 }
3 export 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  */
13 export declare const TimeoutError: TimeoutErrorCtor;