update todo, and other things

This commit is contained in:
2026-05-07 18:46:20 +02:00
parent 72bc839bf1
commit 40acd753ac
5461 changed files with 1566726 additions and 4 deletions
@@ -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;