|
@@ -1,5 +1,6 @@
|
|
|
import * as _pathUtils from './utils/path-utils';
|
|
import * as _pathUtils from './utils/path-utils';
|
|
|
import * as _pagePathUtils from './utils/page-path-utils';
|
|
import * as _pagePathUtils from './utils/page-path-utils';
|
|
|
|
|
+import * as _templateChecker from './utils/template-checker';
|
|
|
|
|
|
|
|
// module.exports = {
|
|
// module.exports = {
|
|
|
// BasicInterceptor: require('./utils/basic-interceptor'),
|
|
// BasicInterceptor: require('./utils/basic-interceptor'),
|
|
@@ -11,6 +12,9 @@ import * as _pagePathUtils from './utils/page-path-utils';
|
|
|
// LocalStorageManager: require('./service/localstorage-manager'),
|
|
// LocalStorageManager: require('./service/localstorage-manager'),
|
|
|
// };
|
|
// };
|
|
|
|
|
|
|
|
|
|
+export * from './models/devided-page-path';
|
|
|
|
|
+
|
|
|
// export utils
|
|
// export utils
|
|
|
export const pathUtils = _pathUtils;
|
|
export const pathUtils = _pathUtils;
|
|
|
export const pagePathUtils = _pagePathUtils;
|
|
export const pagePathUtils = _pagePathUtils;
|
|
|
|
|
+export const templateChecker = _templateChecker;
|