CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
index.d.mts12 linesDownload Raw Back to escalade
1type Promisable<T> = T | Promise<T>;2 3export type Callback = (4	directory: string,5	files: string[],6) => Promisable<string | false | void>;7 8export default function (9	directory: string,10	callback: Callback,11): Promise<string | void>;12 
basant307/AI_Governance_Project · CoolFace