Files
SimfonyBasics/spa/node_modules/atomically/dist/utils/fs_handlers.d.ts
2024-07-05 13:46:23 +02:00

8 lines
244 B
TypeScript

import { Exception } from '../types';
declare const Handlers: {
isChangeErrorOk: (error: Exception) => boolean;
isRetriableError: (error: Exception) => boolean;
onChangeError: (error: Exception) => void;
};
export default Handlers;