| 3 | import { customRef, shallowRef, watch } from 'vue' |
| 4 | |
| 5 | export interface ComputedWithControlRefExtra { |
| 6 | /** |
| 7 | * Force update the computed value. |
| 8 | */ |
| 9 | trigger: () => void |
| 10 | } |
| 11 | |
| 12 | export interface ComputedRefWithControl<T> extends ComputedRef<T>, ComputedWithControlRefExtra {} |
| 13 | export interface WritableComputedRefWithControl<T> extends WritableComputedRef<T>, ComputedWithControlRefExtra {} |
nothing calls this directly
no outgoing calls
no test coverage detected