mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 11:47:48 +08:00
17 lines
370 B
TypeScript
17 lines
370 B
TypeScript
declare module '*.vue' {
|
|
import { Component, ComponentPublicInstance } from 'vue'
|
|
const _default: Component & {
|
|
// eslint-disable-next-line
|
|
new (): ComponentPublicInstance<any>
|
|
}
|
|
export default _default
|
|
}
|
|
|
|
declare type Nullable<T> = T | null;
|
|
|
|
declare type CustomizedHTMLElement<T> = HTMLElement & T;
|
|
|
|
declare type Indexable<T> = {
|
|
[key: string]: T
|
|
};
|