@tempots/dom > AnySignal
Represents any type of signal. It can be a Signal, Prop, or Computed.
Signature:
export type AnySignal<T = any> = Signal<T> | Prop<T> | Computed<T>;
References: Signal, Prop, Computed