mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
declare module '*.vue' {
|
|
import { defineComponent } from 'vue'
|
|
const component: ReturnType<typeof defineComponent>
|
|
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>
|