Laptop-Thing/web/node_modules/escalade/sync/index.d.mts
2024-11-27 12:35:48 -05: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;