5 lines
135 B
TypeScript
5 lines
135 B
TypeScript
|
|
export declare class ComposableTask<T> {
|
||
|
|
then(onfulfilled: (value: T) => T | PromiseLike<T>): Promise<T>;
|
||
|
|
run(): Promise<T>;
|
||
|
|
}
|