Files
node-js-test/node_modules/escalade/sync/index.d.mts
T

10 lines
177 B
TypeScript
Raw Normal View History

2026-05-19 22:10:51 -07:00
export type Callback = (
directory: string,
files: string[],
) => string | false | void;
export default function (
directory: string,
callback: Callback,
): string | void;