UNPKG

@daysnap/utils

Version:
11 lines (9 loc) 313 B
/** * 处理错误信息可以弹出提示 */ interface CreateWithToastOptions { /** error */ onError?: (err: unknown) => void; } declare function createWithToast(options?: CreateWithToastOptions): <T extends (...args: any) => any>(fn: T) => T; export { type CreateWithToastOptions, createWithToast };