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

8 lines
251 B
TypeScript

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