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

4 lines
224 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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>;