smartpath/ts/index.ts

19 lines
446 B
TypeScript
Raw Normal View History

2016-03-12 08:24:05 +01:00
/// <reference path="typings/main.d.ts" />
import plugins = require("./smartpath.plugins");
2016-04-30 11:02:03 +02:00
import SmartpathCheck = require("./smartpath.check");
2016-03-20 18:59:30 +01:00
import SmartpathGet = require("./smartpath.get");
2016-04-30 11:02:03 +02:00
import SmartpathTransform = require("./smartpath.transform");
2015-09-25 23:05:25 +02:00
/**
*
* @type {{getPath: (function(any): undefined)}}
*/
2016-03-12 08:24:05 +01:00
let smartpath = {
2016-04-30 11:02:03 +02:00
check: SmartpathCheck,
get: SmartpathGet,
transform: SmartpathTransform
2015-09-25 23:05:25 +02:00
};
2016-03-12 09:36:30 +01:00
export = smartpath;