exporttypeThrottleOptions= {/** * time frame for throttle * * @defaultValue 0 */wait?: number/** * whether to invoke the function at the start of each period * * @defaultValue true */leading?: boolean/** * whether to invoke the function at the end of each period * * @defaultValue true */trailing?: boolean}exportinterfaceUseThrottledFnOptionsextendsThrottleOptions {}