shims-vue.d.ts 496 B

1234567891011121314151617181920212223
  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. }
  13. declare module 'vue' {
  14. interface CSSProperties {
  15. '--navBarHeight'?: string;
  16. '--barheight'?: string;
  17. '--creationHeight'?: string;
  18. '--staffBoxHeight'?: string;
  19. }
  20. }