UNPKG

349 BTypeScriptView Raw
1/// <reference types="node" />
2import fs from 'fs';
3export declare function getFileStats(packagePath: string): Promise<fs.Stats>;
4export declare function readDirectory(packagePath: string): Promise<string[]>;
5export declare function findPackages(storagePath: string, validationHandler: Function): Promise<{
6 name: string;
7 path: string;
8}[]>;