From 5e275be941b5738dc7951abec21dd1a4d27b043b Mon Sep 17 00:00:00 2001 From: LynnSha1ng Date: Wed, 20 Mar 2024 00:53:10 +0800 Subject: [PATCH] style: reformat curry.ts --- src/curry.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/curry.ts b/src/curry.ts index 3e30354b..c409bef7 100644 --- a/src/curry.ts +++ b/src/curry.ts @@ -499,12 +499,12 @@ export type DebounceConfig = { * The time in milliseconds to wait before calling the * source function */ - delay: number; + delay: number /** * whether the source function will be called on the first * invocation of the debounce function. `false` by default */ - leading?: boolean; + leading?: boolean } export type ThrottledFunction = {