2023-10-03 11:14:36 +08:00
|
|
|
import { Exception } from '../types';
|
|
|
|
declare const Handlers: {
|
|
|
|
isChangeErrorOk: (error: Exception) => boolean;
|
|
|
|
isRetriableError: (error: Exception) => boolean;
|
|
|
|
onChangeError: (error: Exception) => void;
|
|
|
|
};
|
|
|
|
export default Handlers;
|