From b2c1f99751615b9135819fef89edcd4dea80fb16 Mon Sep 17 00:00:00 2001 From: Adam DeHaven Date: Tue, 23 Apr 2024 17:24:59 -0400 Subject: [PATCH] fix: trigger release --- src/utilities/debounce.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utilities/debounce.ts b/src/utilities/debounce.ts index 9378b287c3..d3570ada5f 100644 --- a/src/utilities/debounce.ts +++ b/src/utilities/debounce.ts @@ -2,7 +2,7 @@ * Returns a function, that, as long as it continues to be invoked, will not be triggered. The initial function will be called after the debounced function stops being called for a certain number of milliseconds. * * @param initialFunction Initial function to debounce - * @param delay Time to wait for recurring bounces + * @param {number} delay Time to wait for recurring bounces * @returns the debounced function. */ export function debounce(initialFunction: (...args: any) => any, delay: number): (...args: any) => void {