2016-11-26 21:46:36 +00:00
|
|
|
export declare type TPathType = 'url' | 'local';
|
2016-04-30 10:07:49 +00:00
|
|
|
/**
|
|
|
|
* returns the type of the given path. Can be "url" or "local"
|
|
|
|
*/
|
2016-11-26 21:46:36 +00:00
|
|
|
export declare let type: (pathStringArg: string) => TPathType;
|
2016-04-30 10:07:49 +00:00
|
|
|
export declare let home: (pathArgument?: string) => any;
|
2016-11-26 21:46:36 +00:00
|
|
|
export declare type TSystemArg = 'dynamic' | 'windows' | 'linux' | 'osx';
|
|
|
|
export declare let pathLevels: (pathArg: string, systemArg?: TSystemArg) => string[];
|
|
|
|
export declare let pathLevelsBackwards: (pathArg: string, systemArg?: TSystemArg) => string[];
|