Angular Signal Generators
    Preparing search index...

    Options for nestSignal.

    interface NestSignalOptions<T> {
        debugName?: string;
        equal?: ValueEqualityFn<NestSignalValue<T>>;
        ignoreErrors?: boolean;
        injector?: Injector;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    debugName?: string

    A debug name for the signal. Used in Angular DevTools to identify the signal.

    equal?: ValueEqualityFn<NestSignalValue<T>>

    A comparison function which defines equality for signal values.

    ignoreErrors?: boolean

    If true, errors will be caught, and the value will be set to undefined.

    injector?: Injector

    Needed if not created in injection context and an Subscribable is passed as source.