face-api/build/globalApi/ComposableTask.d.ts

5 lines
135 B
TypeScript

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