module.d.ts 541 B

1234567891011121314
  1. import type { useDict } from '@/utils/dict';
  2. import type { addDateRange, handleTree, selectDictLabel, selectDictLabels, parseTime } from '@/utils/ruoyi';
  3. import type { getConfigKey, updateConfigByKey } from '@/api/system/config';
  4. import type { download as rd } from '@/utils/request';
  5. declare module '@vue/runtime-core' {
  6. interface ComponentCustomProperties {
  7. useDict: typeof useDict;
  8. selectDictLabel: typeof selectDictLabel;
  9. selectDictLabels: typeof selectDictLabels;
  10. navigateBackOrHome: typeof navigateBackOrHome;
  11. }
  12. }