fix(core): typing of key in VNodeProps (#4242)

close #4240
This commit is contained in:
AlexandraCaragata
2021-08-06 17:11:26 +02:00
committed by GitHub
parent 9bee5ccea4
commit d045055b47
3 changed files with 4 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ export interface KeepAliveProps {
max?: number | string
}
type CacheKey = string | number | ConcreteComponent
type CacheKey = string | number | symbol | ConcreteComponent
type Cache = Map<CacheKey, VNode>
type Keys = Set<CacheKey>