ICT30016-Assignment-3/node_modules/escalade/index.d.mts
dlawler489 a79a6afd34 intial
intial
2025-09-16 12:09:52 +10:00

11 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>;