ctor.d.ts 617 B

123456789101112131415161718192021222324252627282930313233
  1. import SetupDefaults from './setupDefaults'
  2. /**
  3. * 版本信息
  4. */
  5. export const VERSION: string;
  6. /**
  7. * 设置全局参数
  8. * @param options 全局参数
  9. */
  10. export function setup(options: SetupDefaults): SetupDefaults;
  11. /**
  12. * 将您自己的实用函数扩展到 XEUtils
  13. * @param methods 函数集
  14. */
  15. export function mixin(...methods: {[key: string]: any}[]): void;
  16. export interface XEUtilsMethods {
  17. VERSION: typeof VERSION;
  18. setup: typeof setup;
  19. mixin: typeof mixin;
  20. [propertys: string]: any;
  21. }
  22. /**
  23. * JavaScript 函数库、工具类
  24. */
  25. declare var XEUtils: XEUtilsMethods
  26. export default XEUtils