|
|
@ -7,6 +7,14 @@ export {} |
|
|
|
/* prettier-ignore */ |
|
|
|
declare module 'vue' { |
|
|
|
export interface GlobalComponents { |
|
|
|
ElButton: typeof import('element-plus/es')['ElButton'] |
|
|
|
ElCol: typeof import('element-plus/es')['ElCol'] |
|
|
|
ElFooter: typeof import('element-plus/es')['ElFooter'] |
|
|
|
ElHeader: typeof import('element-plus/es')['ElHeader'] |
|
|
|
ElIcon: typeof import('element-plus/es')['ElIcon'] |
|
|
|
ElRow: typeof import('element-plus/es')['ElRow'] |
|
|
|
ElTable: typeof import('element-plus/es')['ElTable'] |
|
|
|
ElTableColumn: typeof import('element-plus/es')['ElTableColumn'] |
|
|
|
ErrorModal: typeof import('./src/components/dialogs/ErrorModal.vue')['default'] |
|
|
|
Keyboard: typeof import('./src/components/Keyboard.vue')['default'] |
|
|
|
RouterLink: typeof import('vue-router')['RouterLink'] |
|
|
@ -14,4 +22,7 @@ declare module 'vue' { |
|
|
|
SimpleKeyboard: typeof import('./src/components/SimpleKeyboard.vue')['default'] |
|
|
|
StackInfoModal: typeof import('./src/components/dialogs/StackInfoModal.vue')['default'] |
|
|
|
} |
|
|
|
export interface ComponentCustomProperties { |
|
|
|
vLoading: typeof import('element-plus/es')['ElLoadingDirective'] |
|
|
|
} |
|
|
|
} |