smartpath/ts/index.ts

20 lines
439 B
TypeScript

import 'typings-global'
import plugins = require('./smartpath.plugins')
// import modules
import SmartpathCheck = require('./smartpath.check')
import SmartpathGet = require('./smartpath.get')
import SmartpathTransform = require('./smartpath.transform')
/**
*
* @type {{getPath: (function(any): undefined)}}
*/
let smartpath = {
check: SmartpathCheck,
get: SmartpathGet,
transform: SmartpathTransform
}
export = smartpath