smartpath/dist/index.d.ts
2016-05-01 21:44:40 +02:00

14 lines
380 B
TypeScript

import SmartpathCheck = require("./smartpath.check");
import SmartpathGet = require("./smartpath.get");
import SmartpathTransform = require("./smartpath.transform");
/**
*
* @type {{getPath: (function(any): undefined)}}
*/
declare let smartpath: {
check: typeof SmartpathCheck;
get: typeof SmartpathGet;
transform: typeof SmartpathTransform;
};
export = smartpath;