glam/node_modules/.pnpm/escalade@3.2.0/node_modules/escalade/index.d.mts
2025-12-21 00:01:54 +01: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>;