Skip to content

Commit

Permalink
chore: remove unncessary property on ComputedRef interface
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jul 16, 2021
1 parent bde855e commit cc09772
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/reactivity/src/computed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { ReactiveFlags, toRaw } from './reactive'

export interface ComputedRef<T = any> extends WritableComputedRef<T> {
readonly value: T
defer?: (fn: () => void) => void
}

export interface WritableComputedRef<T> extends Ref<T> {
Expand Down

0 comments on commit cc09772

Please sign in to comment.