chore(utils): update types (#4275)

This commit is contained in:
C.Y.Kun 2021-11-11 22:27:21 +08:00 committed by GitHub
parent a026f10056
commit 4f8ec9eae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,10 +32,10 @@ export type PartialReturnType<T extends (...args: unknown[]) => unknown> =
export type SFCWithInstall<T> = T & Plugin
export type RefElement = HTMLElement | null
export type Nullable<T> = T | null
export type RefElement = Nullable<HTMLElement>
export type CustomizedHTMLElement<T> = HTMLElement & T
export type Indexable<T> = {