2016-05-23 08:15:47 +02:00
|
|
|
import "typings-global";
|
2016-05-01 23:19:54 +02: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;
|