interface SequenceSignalOptions {
    debugName?: string;
    disableAutoReset?: boolean;
    injector?: Injector;
}

Hierarchy

  • Pick<CreateSignalOptions<unknown>, "debugName">
    • SequenceSignalOptions

Properties

debugName?: string

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

disableAutoReset?: boolean

If true, then the sequence will not loop and restart needs to be called.

injector?: Injector

injector should only be necessary if passing in an observable outside injector context.