TenantAtlas/apps/platform/.pnpm-store/v10/files/a3/9bc75e7855195e902ef4a51fbe345978e97e090989fd90b8c4e6fef0e2363eb627cfe87ef1c03ec27ac43a00bfb6a56cb1fcec269d8dd48b4a68521a4f9873
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

16 lines
301 B
Plaintext

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;