claude-web/node_modules/escalade/index.d.ts

16 lines
301 B
TypeScript
Raw Permalink Normal View History

2026-02-23 02:23:38 +00:00
type Promisable<T> = T | Promise<T>;
declare namespace escalade {
export type Callback = (
directory: string,
files: string[],
) => Promisable<string | false | void>;
}
declare function escalade(
directory: string,
callback: escalade.Callback,
): Promise<string | void>;
export = escalade;