Sha256: 1d0a2317852d21742a4b0b1783bfeffeaf8b0405eb2409a9e569f3182a7e123a
Contents?: true
Size: 224 Bytes
Versions: 77
Compression:
Stored size: 224 Bytes
Contents
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>;
Version data entries
77 entries across 76 versions & 12 rubygems