UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

11 lines (8 loc) 267 B
import type { MaybeRef } from "./MaybeRef"; import type { MaybeThunk } from "./MaybeThunk"; /** * @since 0.0.1 * @category Utility */ // eslint-disable-next-line @typescript-eslint/no-explicit-any export type MaybeWrapped<T = any> = MaybeRef<T> | MaybeThunk<T>;