fix(types): fix types for readonly ref

fix #4180
This commit is contained in:
Evan You
2021-07-23 15:24:58 -04:00
parent 231dafd55a
commit 2581cfb707
2 changed files with 15 additions and 14 deletions

View File

@@ -19,11 +19,6 @@ export interface Ref<T = any> {
* @internal
*/
_shallow?: boolean
/**
* Deps are maintained locally rather than in depsMap for performance reasons.
*/
dep?: Dep
}
type RefBase<T> = {