Sha256: 31f9773c49839ecbd0591286db8fcf739c38de09f92ba453c3ea9d84fe76c648
Contents?: true
Size: 236 Bytes
Versions: 36
Compression:
Stored size: 236 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
36 entries across 36 versions & 3 rubygems