shallowRef
import { shallowRef } from "@alloy-js/core";
function shallowRef<T>(value?: T, options?: { label?: string;}): Ref<T>;Parameters
Section titled “Parameters”| value | optional T | |
| options | optional { label?: string; } |
Returns
Section titled “Returns”Ref<T>