Files
Henry Whitaker 8d811862a0 Updated to v1.9.9
2020-11-07 15:27:50 +00:00

3 lines
166 B
TypeScript

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