Files
mooknote_web/node_modules/escalade/sync/index.d.mts
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08: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;