UNPKG

@onesy/utils

Version:
7 lines (6 loc) 199 B
import { TMethod } from './models'; interface IThrottleMethod { (...args: any[]): any; } declare const throttle: (method: TMethod, interval?: number) => IThrottleMethod; export default throttle;