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. This is used when creating a cursor internally. If a cursor is provided as a source, then this will be ignored.

injector?: Injector

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