hexo/node_modules/atomically/dist/utils/fs_handlers.d.ts

8 lines
251 B
TypeScript
Raw Normal View History

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;