Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TimeoutError

An error emitted when a timeout occurs.

interface TimeoutError <T = unknown, M = unknown> extends Error {
info: TimeoutInfo<T, M> | null;
}
const TimeoutError: TimeoutErrorCtor;

§Type Parameters

§
T = unknown
[src]
§
M = unknown
[src]

§Extends

§
Error
[src]

§Properties

§
info: TimeoutInfo<T, M> | null
[src]

The information provided to the error by the timeout operation that created the error. Will be null if used directly in non-RxJS code with an empty constructor. (Note that using this constructor directly is not recommended, you should create your own errors)