fix(core): WeakRef typings to include deref (#10006)

This commit is contained in:
Nathan Walker
2022-08-25 16:34:47 -07:00
parent 3ce5362a04
commit 5bed8b96d8

View File

@@ -354,6 +354,7 @@ declare class WeakRef<T> {
constructor(obj: T);
get(): T;
clear(): void;
deref(): T | undefined;
}
/**