mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
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>
|