Tcsm
2023-10-22 2e6f6f75016d024684653b521766c8834d819d98
1
2
3
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>;