pages/node_modules/escalade/index.d.mts
git_repo_user 0a38b60f32 first commit
2025-08-29 21:42:23 +00:00

11 lines
236 B
TypeScript

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