smartpath/ts/index.ts

19 lines
428 B
TypeScript
Raw Normal View History

2016-06-14 03:16:43 +00:00
import "typings-global";
2016-03-12 07:24:05 +00:00
import plugins = require("./smartpath.plugins");
2016-04-30 09:02:03 +00:00
import SmartpathCheck = require("./smartpath.check");
2016-03-20 17:59:30 +00:00
import SmartpathGet = require("./smartpath.get");
2016-04-30 09:02:03 +00:00
import SmartpathTransform = require("./smartpath.transform");
2015-09-25 21:05:25 +00:00
/**
*
* @type {{getPath: (function(any): undefined)}}
*/
2016-03-12 07:24:05 +00:00
let smartpath = {
2016-04-30 09:02:03 +00:00
check: SmartpathCheck,
get: SmartpathGet,
transform: SmartpathTransform
2015-09-25 21:05:25 +00:00
};
2016-03-12 08:36:30 +00:00
export = smartpath;