Documentation
    Preparing search index...

    Represents a writable signal: a signal that can be set to a new value.

    interface WritableSignal<GValue> {
        "[SIGNAL]": unknown;
        set(value: GValue): void;
        asReadonly(): Signal<GValue>;
        (): GValue;
    }

    Type Parameters

    • GValue

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    "[SIGNAL]": unknown

    Methods