index.ts 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. import * as _customTagUtils from './plugin/util/custom-tag-utils';
  2. import * as _envUtils from './utils/env-utils';
  3. // export utils by *.js
  4. export const envUtils = _envUtils;
  5. export const customTagUtils = _customTagUtils;
  6. // export utils with namespace
  7. export * as templateChecker from './utils/template-checker';
  8. export * as objectIdUtils from './utils/objectid-utils';
  9. export * as pagePathUtils from './utils/page-path-utils';
  10. export * as pathUtils from './utils/path-utils';
  11. export * as pageUtils from './utils/page-utils';
  12. // export all
  13. export * from './interfaces/attachment';
  14. export * from './interfaces/common';
  15. export * from './interfaces/has-object-id';
  16. export * from './interfaces/lang';
  17. export * from './interfaces/page';
  18. export * from './interfaces/revision';
  19. export * from './interfaces/subscription';
  20. export * from './interfaces/tag';
  21. export * from './interfaces/user';
  22. export * from './plugin/interfaces/plugin-definition-v4';
  23. export * from './plugin/service/tag-cache-manager';
  24. export * from './models/devided-page-path';
  25. export * from './service/localstorage-manager';
  26. export * from './utils/basic-interceptor';
  27. export * from './utils/browser-utils';
  28. export * from './utils/with-utils';