From 02619f92d8042e6c52efe4d25ba0f0ba4f4f68ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E8=A7=81?= Date: Wed, 14 Jul 2021 21:44:57 +0800 Subject: [PATCH] =?UTF-8?q?doc:=20=E6=9B=B4=E6=94=B9=E6=96=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/hooks/src/useDebounce/index.zh-CN.md | 1 - packages/hooks/src/useThrottleFn/index.zh-CN.md | 1 - 2 files changed, 2 deletions(-) diff --git a/packages/hooks/src/useDebounce/index.zh-CN.md b/packages/hooks/src/useDebounce/index.zh-CN.md index 71a0fd8239..079c72aa62 100644 --- a/packages/hooks/src/useDebounce/index.zh-CN.md +++ b/packages/hooks/src/useDebounce/index.zh-CN.md @@ -43,4 +43,3 @@ const debouncedValue = useDebounce( | wait | 超时时间,单位为毫秒 | `number` | `1000` | | leading | 是否在延迟开始前调用函数 | `boolean` | `false` | | trailing | 是否在延迟开始后调用函数 | `boolean` | `true` | -| maxWait | 函数调用允许延迟的最长时间 | `() => void` | - | diff --git a/packages/hooks/src/useThrottleFn/index.zh-CN.md b/packages/hooks/src/useThrottleFn/index.zh-CN.md index 25adab0c2c..c4435e4af9 100644 --- a/packages/hooks/src/useThrottleFn/index.zh-CN.md +++ b/packages/hooks/src/useThrottleFn/index.zh-CN.md @@ -44,7 +44,6 @@ const { | wait | 超时时间,单位为毫秒 | `number` | `1000` | | leading | 是否在延迟开始前调用函数 | `boolean` | `true` | | trailing | 是否在延迟开始后调用函数 | `boolean` | `true` | -| maxWait | 函数调用允许延迟的最长时间 | `() => void` | - | ### Result