Options
All
  • Public
  • Public/Protected
  • All
Menu

Module func/debounce

Index

Functions

Functions

Const debounce

0.0.55 provide
  • debounce<T>(func: T, wait: undefined | number, options: DebounceSettingsLeading): DebouncedFuncLeading<T>
  • debounce<T>(func: T, wait?: number, options?: DebounceSettings): DebouncedFunc<T>
  • 赋值lodash的Debounce

    see

    debounce 文档

    Type parameters

    • T: (...args: any) => any

    Parameters

    • func: T
    • wait: undefined | number
    • options: DebounceSettingsLeading

    Returns DebouncedFuncLeading<T>

  • 赋值lodash的Debounce

    see

    debounce 文档

    Type parameters

    • T: (...args: any) => any

    Parameters

    • func: T
    • Optional wait: number
    • Optional options: DebounceSettings

    Returns DebouncedFunc<T>