UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

11 lines (10 loc) 269 B
import type { Ref } from 'vue'; type MaybeRef<T> = T | Ref<T>; /** * Converts ref to reactive. * * @see https://vueuse.org/toReactive * @param objectRef A ref of object */ export declare function toReactive<T extends object>(objectRef: MaybeRef<T>): T; export {};