toRefs
import { toRefs } from "@alloy-js/core";
function toRefs<T extends object>(object: T): { [K in keyof T]: Ref<T[K]>;};Parameters
Section titled “Parameters”| object | T |
Returns
Section titled “Returns”{ [K in keyof T]: Ref<T[K]>; }
import { toRefs } from "@alloy-js/core";
function toRefs<T extends object>(object: T): { [K in keyof T]: Ref<T[K]>;};| object | T |
{ [K in keyof T]: Ref<T[K]>; }