@vueuse/shared 13.6.0 → 13.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.mts +0 -5
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -228,11 +228,6 @@ interface ThrottleFilterOptions {
|
|
|
228
228
|
}
|
|
229
229
|
/**
|
|
230
230
|
* Create an EventFilter that throttle the events
|
|
231
|
-
*
|
|
232
|
-
* @param ms
|
|
233
|
-
* @param [trailing]
|
|
234
|
-
* @param [leading]
|
|
235
|
-
* @param [rejectOnCancel]
|
|
236
231
|
*/
|
|
237
232
|
declare function throttleFilter(ms: MaybeRefOrGetter<number>, trailing?: boolean, leading?: boolean, rejectOnCancel?: boolean): EventFilter;
|
|
238
233
|
declare function throttleFilter(options: ThrottleFilterOptions): EventFilter;
|