SignalValue type
Home > @rimitive/react > SignalValue
SignalValue type
Section titled “SignalValue type”Extract the value type from a Readable signal.
Signature:
export type SignalValue<S> = S extends Readable<infer T> ? T : never;References: Readable
Example
Section titled “Example”type MySignal = Readable<number>;type Value = SignalValue<MySignal>; // number