2016-09-30 15:08:09 +00:00
|
|
|
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')
|
2015-09-25 21:05:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @type {{getPath: (function(any): undefined)}}
|
|
|
|
*/
|
2016-03-12 07:24:05 +00:00
|
|
|
let smartpath = {
|
2016-04-30 09:02:03 +00:00
|
|
|
check: SmartpathCheck,
|
|
|
|
get: SmartpathGet,
|
|
|
|
transform: SmartpathTransform
|
2016-09-30 15:08:09 +00:00
|
|
|
}
|
2015-09-25 21:05:25 +00:00
|
|
|
|
2016-09-30 15:08:09 +00:00
|
|
|
export = smartpath
|