UNPKG

@aplus-frontend/ui

Version:

7 lines (6 loc) 178 B
import { Ref } from 'vue'; export declare function useManualRef(): { updateSet: Set<() => void>; manualRef: <T>(value: T) => Ref<T, T>; triggerUpdate: () => void; };