mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
docs(vant-use): fix docs type (#11844)
* docs(useClickAway): fix docs type * docs(useCountDown): fix docs type
This commit is contained in:
parent
e124db7531
commit
8a32e861d8
@ -64,7 +64,10 @@ type Options = {
|
||||
};
|
||||
|
||||
function useClickAway(
|
||||
target: Element | Ref<Element | undefined>,
|
||||
target:
|
||||
| Element
|
||||
| Ref<Element | undefined>
|
||||
| Array<Element | Ref<Element | undefined>>,
|
||||
listener: EventListener,
|
||||
options?: Options
|
||||
): void;
|
||||
|
@ -66,7 +66,10 @@ type Options = {
|
||||
};
|
||||
|
||||
function useClickAway(
|
||||
target: Element | Ref<Element | undefined>,
|
||||
target:
|
||||
| Element
|
||||
| Ref<Element | undefined>
|
||||
| Array<Element | Ref<Element | undefined>>,
|
||||
listener: EventListener,
|
||||
options?: Options
|
||||
): void;
|
||||
|
@ -93,7 +93,7 @@ function useCountDown(options: UseCountDownOptions): CountDown;
|
||||
| time | Total time, unit milliseconds | _number_ | - |
|
||||
| millisecond | Whether to enable millisecond render | _boolean_ | `false` |
|
||||
| onChange | Triggered when count down changed | _(current: CurrentTime) => void_ | - |
|
||||
| onFinish | Triggered when count down finished | - |
|
||||
| onFinish | Triggered when count down finished | _() => void_ | - |
|
||||
|
||||
### Return Value
|
||||
|
||||
|
@ -97,7 +97,7 @@ function useCountDown(options: UseCountDownOptions): CountDown;
|
||||
| time | 倒计时时长,单位毫秒 | _number_ | - |
|
||||
| millisecond | 是否开启毫秒级渲染 | _boolean_ | `false` |
|
||||
| onChange | 倒计时改变时触发的回调函数 | _(current: CurrentTime) => void_ | - |
|
||||
| onFinish | 倒计时结束时触发的回调函数 | - |
|
||||
| onFinish | 倒计时结束时触发的回调函数 | _() => void_ | - |
|
||||
|
||||
### 返回值
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user