Files
power-apps-codeapps-pipelines/CodeApp_NeonReactor/node_modules/escalade/index.d.mts
T
2026-07-12 15:11:38 +02:00

12 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>;