Files
starface-outlook-sync-addin/node_modules/escalade/index.d.mts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

12 lines
236 B
TypeScript

type Promisable<T> = T | Promise<T>;
export type Callback = (
directory: string,
files: string[],
) => Promisable<string | false | void>;
export default function (
directory: string,
callback: Callback,
): Promise<string | void>;