global.d.ts 359 B

123456789101112
  1. import { ModalFunc, ModalFuncProps } from "ant-design-vue/lib/modal/Modal";
  2. import { ComponentCustomProperties } from "vue";
  3. declare module "@vue/runtime-core" {
  4. interface ComponentCustomProperties {
  5. $copyText(
  6. text: string,
  7. container?: HTMLElement
  8. ): Promise<ClipboardJS.Event>;
  9. $confirm(options: ModalFuncProps): ModalFunc;
  10. }
  11. }