@resee-movies/utilities - v1.1.0
    Preparing search index...

    Type Alias ThrottlingFunction<TargetFn>

    ThrottlingFunction: (...args: Parameters<TargetFn>) => void

    The function that is returned by the throttle function. It will accept the same parameters as the function that it is wrapping, but will always itself return void. If you need the return of the throttled function after it is invoked, see ThrottleOptions.callback.

    Type Parameters

    Type Declaration

      • (...args: Parameters<TargetFn>): void
      • Parameters

        Returns void