6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
|
/**
|
||
|
* returns the type of the given path. Can be "url" or "local"
|
||
|
*/
|
||
|
export declare let type: (pathStringArg: string) => string;
|
||
|
export declare let home: (pathArgument?: string) => any;
|