fs_handlers.d.ts 244 B

12345678
  1. import { Exception } from '../types';
  2. declare const Handlers: {
  3. isChangeErrorOk: (error: Exception) => boolean;
  4. isRetriableError: (error: Exception) => boolean;
  5. onChangeError: (error: Exception) => void;
  6. };
  7. export default Handlers;