ether-admin/node_modules/ant-design-vue/es/_util/toReactive.d.ts

11 lines
269 B
TypeScript

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 {};