UNPKG

@opra/common

Version:
11 lines (10 loc) 355 B
import type { ErrorIssue } from '../error-issue.js'; import { OpraHttpError } from '../opra-http-error.js'; /** * 409 Conflict * This response is sent when a request conflicts with the current state of the server. */ export declare class ConflictError extends OpraHttpError { status: number; protected init(issue: Partial<ErrorIssue>): void; }