Chunte's picture
Chunte HF staff
Upload 1904 files
5de1c56 verified
raw
history blame
166 Bytes
export type Callback = (directory: string, files: string[]) => string | false | void;
export default function (directory: string, callback: Callback): string | void;