@nodelib/fs.scandir
Advanced tools
Comparing version 1.0.0 to 1.0.1
/// <reference types="node" /> | ||
import * as fs from 'fs'; | ||
import { Options } from './managers/options'; | ||
import { FilterFunction, Options, PreFilterFunction, SortFunction } from './managers/options'; | ||
import { DirEntry } from './types/entry'; | ||
@@ -13,1 +13,6 @@ /** | ||
export declare function scandirSync(path: fs.PathLike, opts?: Options): DirEntry[]; | ||
export declare type DirEntry = DirEntry; | ||
export declare type Options = Options; | ||
export declare type PreFilterFunction = PreFilterFunction; | ||
export declare type FilterFunction = FilterFunction; | ||
export declare type SortFunction = SortFunction; |
{ | ||
"name": "@nodelib/fs.scandir", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "List files and directories inside the specified path", | ||
@@ -31,3 +31,3 @@ "license": "MIT", | ||
}, | ||
"gitHead": "ae213336c96216a8dd59ea675efc9ae3f4cf0fcf" | ||
"gitHead": "d40ac39d85b3954b9cf87e941c8f1408bdb9598f" | ||
} |
11101
211