shims-vue.d.ts 319 B

12345678910111213141516
  1. import dayjs from "dayjs";
  2. declare module 'vue-cropper'
  3. declare module '*.vue' {
  4. import { DefineComponent } from 'vue';
  5. const component: DefineComponent<{}, {}, any>;
  6. export default component;
  7. }
  8. declare module '@vue/runtime-core' {
  9. export interface ComponentCustomProperties {
  10. $dayjs: dayjs.Dayjs
  11. }
  12. }