Files
Beyhan Oğur dd72c6220d first commit
2026-04-26 22:32:52 +03:00

10 lines
177 B
TypeScript

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