recipe-app/node_modules/escalade/sync/index.d.mts
2025-09-06 22:24:52 +02:00

9 lines
177 B
TypeScript

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