mvom
Version:
Multivalue Object Mapper
10 lines (9 loc) • 305 B
TypeScript
import type { AxiosError } from 'axios';
import BaseError from './BaseError';
interface TimeoutErrorConstructorOptions {
message?: string;
}
declare class TimeoutError extends BaseError {
constructor(cause: AxiosError, { message }?: TimeoutErrorConstructorOptions);
}
export default TimeoutError;