Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

10 lines
230 B
TypeScript

export declare class HTTPError extends Error {
statusCode: number;
location?: string;
constructor({ status, message, location, }: {
status: number;
message: string;
location?: string;
});
}