Angular Signal Generators
    Preparing search index...
    interface ThrottleSignalOptions {
        injector?: Injector;
        leading?: boolean;
        trailing?: boolean;
    }
    Index
    injector?: Injector

    Pass an injector if this is not created in an injection context.

    leading?: boolean

    Emit the first change in each throttle period immediately. Defaults to true.

    trailing?: boolean

    Emit the most recent suppressed value at the end of the period. Defaults to true.