Skip to content

shallowRef

import { shallowRef } from "@alloy-js/core";
function shallowRef<T>(value?: T, options?: {
label?: string;
}): Ref<T>;
valueoptional

T

optionsoptional

{ label?: string; }

Ref<T>