2016-03-12 07:24:05 +00:00
|
|
|
/// <reference path="typings/main.d.ts" />
|
|
|
|
import plugins = require("./smartpath.plugins");
|
2016-03-20 17:59:30 +00:00
|
|
|
import SmartpathTransform = require("./smartpath.transform");
|
|
|
|
import SmartpathGet = require("./smartpath.get");
|
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-20 17:59:30 +00:00
|
|
|
transform: SmartpathTransform,
|
|
|
|
get: SmartpathGet
|
|
|
|
|
2015-09-25 21:05:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-03-12 08:36:30 +00:00
|
|
|
export = smartpath;
|