chore: remove unncessary property on ComputedRef interface

This commit is contained in:
Evan You 2021-07-07 10:32:06 -04:00
parent bde855e017
commit cc09772d55

View File

@ -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> {