2016-05-23 06:15:47 +00:00
|
|
|
import "typings-global";
|
2016-06-24 01:36:51 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param filePath
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export declare let fileExistsSync: (filePath: any) => boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param filePath
|
|
|
|
* @returns {any}
|
|
|
|
*/
|
|
|
|
export declare let fileExists: (filePath: any) => any;
|
|
|
|
/**
|
|
|
|
* Checks if given path points to an existing directory
|
|
|
|
*/
|
|
|
|
export declare let isDirectory: (pathArg: any) => boolean;
|
|
|
|
/**
|
|
|
|
* Checks if a given path points to an existing file
|
|
|
|
*/
|
|
|
|
export declare let isFile: (pathArg: any) => boolean;
|
2016-06-28 04:57:51 +00:00
|
|
|
/**
|
|
|
|
* ensures that a directory is in place
|
|
|
|
*/
|
|
|
|
export declare let ensureDir: (dirPathArg: string) => any;
|
|
|
|
/**
|
|
|
|
* ensures that a directory is in place
|
|
|
|
*/
|
|
|
|
export declare let ensureDirSync: (dirPathArg: string) => void;
|
2016-06-23 16:39:02 +00:00
|
|
|
/**
|
|
|
|
* copies a file from A to B on the local disk
|
|
|
|
*/
|
2016-06-23 16:31:55 +00:00
|
|
|
export declare let copy: (fromArg: string, toArg: string) => any;
|
2016-06-23 16:39:02 +00:00
|
|
|
/**
|
|
|
|
* copies a file SYNCHRONOUSLY from A to B on the local disk
|
|
|
|
*/
|
2016-06-23 16:31:55 +00:00
|
|
|
export declare let copySync: (fromArg: string, toArg: string) => boolean;
|
2016-06-23 16:39:02 +00:00
|
|
|
/**
|
|
|
|
* removes a file or folder from local disk
|
|
|
|
*/
|
2016-06-23 16:31:55 +00:00
|
|
|
export declare let remove: (pathArg: string) => any;
|
2016-06-23 16:39:02 +00:00
|
|
|
/**
|
|
|
|
* removes a file SYNCHRONOUSLY from local disk
|
|
|
|
*/
|
2016-06-23 16:31:55 +00:00
|
|
|
export declare let removeSync: (pathArg: string) => boolean;
|
2016-05-01 21:19:54 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param filePathArg
|
|
|
|
* @returns {*}
|
|
|
|
*/
|
|
|
|
export declare let toGulpStreamSync: (filePathArg: string) => any;
|
|
|
|
export declare let toGulpDestSync: (folderPathArg: string) => any;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param filePathArg
|
|
|
|
* @param fileTypeArg
|
|
|
|
* @returns {any}
|
|
|
|
*/
|
|
|
|
export declare let toObjectSync: (filePathArg: any, fileTypeArg?: any) => any;
|
|
|
|
/**
|
|
|
|
* reads a file content to a String
|
|
|
|
* @param filePath
|
|
|
|
* @returns {string|Buffer|any}
|
|
|
|
*/
|
|
|
|
export declare let toStringSync: (filePath: any) => any;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param filePathArg
|
|
|
|
* @param options
|
|
|
|
* @returns {number}
|
|
|
|
*/
|
|
|
|
export declare let toVinylSync: (filePathArg: any, options?: {}) => any;
|
|
|
|
/**
|
|
|
|
* lets you reload files hot.
|
|
|
|
* @param path
|
|
|
|
* @returns {any}
|
|
|
|
*/
|
|
|
|
export declare let requireReload: (path: string) => any;
|
2016-06-23 16:39:02 +00:00
|
|
|
/**
|
|
|
|
* lists Folders in a directory on local disk
|
2016-06-28 04:57:51 +00:00
|
|
|
* @returns Promise
|
2016-06-23 16:39:02 +00:00
|
|
|
*/
|
2016-06-28 06:40:22 +00:00
|
|
|
export declare let listFolders: (pathArg: string, regexFilter?: RegExp) => any;
|
2016-06-23 16:39:02 +00:00
|
|
|
/**
|
|
|
|
* lists Folders SYNCHRONOUSLY in a directory on local disk
|
2016-06-28 04:57:51 +00:00
|
|
|
* @returns an array with the folder names as strings
|
2016-06-23 16:39:02 +00:00
|
|
|
*/
|
2016-06-28 06:40:22 +00:00
|
|
|
export declare let listFoldersSync: (pathArg: string, regexFilter?: RegExp) => string[];
|
|
|
|
/**
|
|
|
|
* lists Files in a directory on local disk
|
|
|
|
* @returns Promise
|
|
|
|
*/
|
|
|
|
export declare let listFiles: (pathArg: string, regexFilter?: RegExp) => any;
|
|
|
|
/**
|
|
|
|
* lists Files SYNCHRONOUSLY in a directory on local disk
|
|
|
|
* @returns an array with the folder names as strings
|
|
|
|
*/
|
|
|
|
export declare let listFilesSync: (pathArg: string, regexFilter?: RegExp) => string[];
|
|
|
|
/**
|
|
|
|
* lists all items (folders AND files) in a directory on local disk
|
|
|
|
* @returns Promise
|
|
|
|
*/
|
|
|
|
export declare let listAllItems: (pathArg: string, regexFilter?: RegExp) => any;
|
|
|
|
/**
|
|
|
|
* lists all items (folders AND files) SYNCHRONOUSLY in a directory on local disk
|
|
|
|
* @returns an array with the folder names as strings
|
|
|
|
*/
|
|
|
|
export declare let listAllItemsSync: (pathArg: string, regexFilter?: RegExp) => string[];
|