UNPKG

@tunframework/tun

Version:

tun framework for node with typescript

10 lines (9 loc) 241 B
export interface HttpErrorOptions { status?: number; message?: string; error?: Error; } export declare class HttpError extends Error { status: number; constructor({ status, message, error }: HttpErrorOptions); }