UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

10 lines (7 loc) 211 B
import type { ComputedRef, Ref } from "vue"; /** * @since 0.1.3 * @category Utility */ // eslint-disable-next-line @typescript-eslint/no-explicit-any export type RefLike<T = any> = ComputedRef<T> | Ref<T>;