2016-05-23 06:15:47 +00:00
|
|
|
import "typings-global";
|
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
|
|
|
export declare let toFS: (options: {
|
|
|
|
from: string;
|
|
|
|
toPath: string;
|
|
|
|
}, cb?: any) => void;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
export declare let listFolders: (pathArg: string) => any;
|
|
|
|
/**
|
|
|
|
* lists Folders SYNCHRONOUSLY in a directory on local disk
|
|
|
|
*/
|
|
|
|
export declare let listFoldersSync: (pathArg: any) => any;
|
2016-06-23 16:31:55 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param filePath
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export declare let fileExistsSync: (filePath: any) => boolean;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param filePath
|
|
|
|
* @returns {any}
|
|
|
|
*/
|
|
|
|
export declare let fileExists: (filePath: any) => any;
|
|
|
|
export declare let isDirectory: (pathArg: any) => boolean;
|
|
|
|
export declare let isFile: (pathArg: any) => boolean;
|