UNPKG

readdir

Version:

Reads a directory and return results with the ability to use Ant style file match patterns

5 lines (4 loc) 169 B
/// <reference types="node" /> import { Stats } from 'fs'; export declare type FileStatFn = (path: string) => Promise<Stats>; export declare const fileStat: FileStatFn;