2022-01-03 09:41:34 +08:00
|
|
|
declare module 'vue' {
|
|
|
|
export interface GlobalComponents {
|
2023-12-21 10:50:20 +08:00
|
|
|
Icon: (typeof import('../src/components/Icon/index'))['Icon']
|
|
|
|
Permission: (typeof import('../src/components/Permission/index'))['Permission']
|
|
|
|
BaseButton: (typeof import('../src/components/Button/index'))['BaseButton']
|
2022-01-03 09:41:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {}
|