now has better structure

This commit is contained in:
2016-03-20 18:59:30 +01:00
parent b113dcfbe0
commit 2bd242ac57
9 changed files with 145 additions and 47 deletions

View File

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