astro-ghostcms/.pnpm-store/v3/files/5e/b660e66078ee787686925394c38...

4 lines
224 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>;