persona-community-5/.pnpm-store/v3/files/d4/8033983060bbcf16a483da590b2596fd2df21552cf0ebdd38b179e6a4f3af17f1479d0de51b379adca5fbab7757c4a0bd3e4e59ff659af02c5348a64115d98
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00: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>;