Utworzyłemm główną strukturę stromy

This commit is contained in:
Paweł Domański
2026-04-07 08:31:30 +02:00
parent 4d2fc80e2d
commit 28032ce7e0
5586 changed files with 658178 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
type Promisable<T> = T | Promise<T>;
declare namespace escalade {
export type Callback = (
directory: string,
files: string[],
) => Promisable<string | false | void>;
}
declare function escalade(
directory: string,
callback: escalade.Callback,
): Promise<string | void>;
export = escalade;