smartpath/ts/index.ts

16 lines
289 B
TypeScript
Raw Normal View History

2016-03-12 07:24:05 +00:00
/// <reference path="typings/main.d.ts" />
import plugins = require("./smartpath.plugins");
import SmartpathAbsolute = require("./smartpath.absolute");
2015-09-25 21:05:25 +00:00
/**
*
* @type {{getPath: (function(any): undefined)}}
*/
2016-03-12 07:24:05 +00:00
let smartpath = {
2016-03-12 08:36:30 +00:00
absolute: SmartpathAbsolute
2015-09-25 21:05:25 +00:00
};
2016-03-12 08:36:30 +00:00
export = smartpath;