@lazycatcloud/lzc-toolkit 0.0.112 → 0.0.113
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.
|
@@ -14,7 +14,7 @@ export interface UseDelayAsyncOptions extends LoadingToastOptions {
|
|
|
14
14
|
/** 当execute函数执行完成后执行该回调函数 */
|
|
15
15
|
onSuccess?: (() => void) | (() => Promise<void>);
|
|
16
16
|
/** 抛出捕获到的错误 */
|
|
17
|
-
onError?: ((err:
|
|
17
|
+
onError?: ((err: any) => void) | (() => void) | (() => Promise<void>);
|
|
18
18
|
}
|
|
19
19
|
export declare type UseDelayAsyncExpose = {
|
|
20
20
|
/** 是否在执行中 */
|