mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
22 lines
508 B
TypeScript
22 lines
508 B
TypeScript
declare module '*.vue' {
|
|
import { App, defineComponent } from 'vue'
|
|
const component: ReturnType<typeof defineComponent> & {
|
|
install(app: App): void
|
|
}
|
|
export default component
|
|
}
|
|
|
|
declare type Nullable<T> = T | null;
|
|
|
|
declare type CustomizedHTMLElement<T> = HTMLElement & T
|
|
|
|
declare type Indexable<T> = {
|
|
[key: string]: T
|
|
}
|
|
|
|
declare type Hash<T> = Indexable<T>
|
|
|
|
declare type TimeoutHandle = ReturnType<typeof global.setTimeout>
|
|
|
|
declare type ComponentSize = 'large' | 'medium' | 'small' | 'mini'
|