UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

8 lines (7 loc) 202 B
import type { MaybeRef } from "./MaybeRef"; import type { MaybeThunk } from "./MaybeThunk"; /** * @since 0.0.1 * @category Utility */ export type MaybeWrapped<T = any> = MaybeRef<T> | MaybeThunk<T>;