Files
smartpath/ts/index.ts
2016-03-20 18:59:30 +01:00

18 lines
366 B
TypeScript

/// <reference path="typings/main.d.ts" />
import plugins = require("./smartpath.plugins");
import SmartpathTransform = require("./smartpath.transform");
import SmartpathGet = require("./smartpath.get");
/**
*
* @type {{getPath: (function(any): undefined)}}
*/
let smartpath = {
transform: SmartpathTransform,
get: SmartpathGet
};
export = smartpath;