Skip to content

ref

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

T

optionsoptional

{ isInfrastructure?: boolean; }

Ref<T>