smartpath/dist/index.d.ts

15 lines
405 B
TypeScript
Raw Normal View History

2016-06-14 03:16:43 +00:00
import "typings-global";
2016-04-30 10:07:49 +00:00
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;