Skip to content

Commit

Permalink
chore(reactivity): fix typo in types (#4889)
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rvr committed Nov 2, 2021
1 parent fe853a5 commit d56f115
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/reactivity/src/computed.ts
Expand Up @@ -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> {
Expand Down

0 comments on commit d56f115

Please sign in to comment.