Files
skills-here-run-place/node_modules/escalade/sync/index.d.mts
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01: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;