UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

11 lines (8 loc) 244 B
import type { RefLike } from "./RefLike"; import type { Thunk } from "./Thunk"; /** * @since 0.2.2 * @category Utility */ // eslint-disable-next-line @typescript-eslint/no-explicit-any export type Wrapped<T = any> = RefLike<T> | Thunk<T>;