UNPKG

escalade

Version:

A tiny (183B to 210B) and fast utility to ascend parent directories

16 lines (12 loc) 301 B
type Promisable<T> = T | Promise<T>; declare namespace escalade { export type Callback = ( directory: string, files: string[], ) => Promisable<string | false | void>; } declare function escalade( directory: string, callback: escalade.Callback, ): Promise<string | void>; export = escalade;