mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-01 18:17:46 +00:00
19 lines
432 B
TypeScript
19 lines
432 B
TypeScript
declare module '*.vue' {
|
|
import { DefineComponent } from 'vue'
|
|
|
|
const Component: DefineComponent<{}, {}, any>
|
|
export default Component
|
|
}
|
|
|
|
declare module 'ant-design-vue/es/locale/*' {
|
|
import { Locale } from 'ant-design-vue/types/locale-provider'
|
|
|
|
const locale: Locale & ReadonlyRecordable
|
|
export default locale as Locale & ReadonlyRecordable
|
|
}
|
|
|
|
declare module 'virtual:*' {
|
|
const result: any
|
|
export default result
|
|
}
|