25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
|
export declare class LaterPromise<T> extends Promise<T> {
|
||
|
private readonly _time;
|
||
|
private readonly _handle;
|
||
|
private _resolve;
|
||
|
private _reject;
|
||
|
constructor();
|
||
|
resolved(object: T): void;
|
||
|
rejected(reason: any): void;
|
||
|
function_rejected(): (error: any) => void;
|
||
|
time(): number;
|
||
|
/**
|
||
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
||
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
||
|
* @param onrejected The callback to execute when the Promise is rejected.
|
||
|
* @returns A Promise for the completion of which ever callback is executed.
|
||
|
*/
|
||
|
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): Promise<TResult1 | TResult2>;
|
||
|
/**
|
||
|
* Attaches a callback for only the rejection of the Promise.
|
||
|
* @param onrejected The callback to execute when the Promise is rejected.
|
||
|
* @returns A Promise for the completion of the callback.
|
||
|
*/
|
||
|
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): Promise<T | TResult>;
|
||
|
}
|