Files
whsfund/node_modules/escalade/sync/index.d.mts
2026-03-06 04:54:20 -04: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;