TenantAtlas/apps/platform/.pnpm-store/v10/files/d4/8033983060bbcf16a483da590b2596fd2df21552cf0ebdd38b179e6a4f3af17f1479d0de51b379adca5fbab7757c4a0bd3e4e59ff659af02c5348a64115d98
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

12 lines
236 B
Plaintext

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