CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
index.d.ts13 linesDownload Raw Back to async-function
1declare namespace getAsyncFunction {2    type AsyncFunction<T = unknown> = (...args: any[]) => Promise<T>;3 4    interface AsyncFunctionConstructor extends FunctionConstructor {5        new <T>(...args: string[]): AsyncFunction<T>;6        <T>(...args: string[]): AsyncFunction<T>;7        readonly prototype: AsyncFunction;8    }9}10 11declare function getAsyncFunction(): getAsyncFunction.AsyncFunctionConstructor | false;12 13export = getAsyncFunction;
basant307/AI_Governance_Project · CoolFace