Interface HttpErrorOptions

Options bag for HttpError.

interface HttpErrorOptions {
    body?: unknown;
    cause?: unknown;
    headers?: Record<string, string>;
}

Properties

Properties

body?: unknown
cause?: unknown
headers?: Record<string, string>