Pibd-21_Alekseev_I.S._Inter.../IP/node_modules/escalade/index.d.ts
VanyaAlekseev c91124ead4 lab3
2023-12-21 21:08:22 +04:00

4 lines
224 B
TypeScript

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