chore(reactivity): fix typo in types (#4889)

This commit is contained in:
Marvin Rudolph 2021-11-02 20:19:39 +01:00 committed by GitHub
parent fe853a5a40
commit d56f115f71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,11 +4,11 @@ import { isFunction, NOOP } from '@vue/shared'
import { ReactiveFlags, toRaw } from './reactive'
import { Dep } from './dep'
declare const ComoutedRefSymbol: unique symbol
declare const ComputedRefSymbol: unique symbol
export interface ComputedRef<T = any> extends WritableComputedRef<T> {
readonly value: T
[ComoutedRefSymbol]: true
[ComputedRefSymbol]: true
}
export interface WritableComputedRef<T> extends Ref<T> {