UNPKG

@arteneo/forge

Version:
16 lines (15 loc) 714 B
import TranslateVariablesInterface from "../definitions/TranslateVariablesInterface"; type RequestExecutionExceptionSeverity = "warning" | "error"; type RequestExecutionExceptionPayload = any; interface RequestExecutionExceptionErrorType { message: string; parameters?: TranslateVariablesInterface; severity: RequestExecutionExceptionSeverity; } interface RequestExecutionExceptionType { code: number; payload: RequestExecutionExceptionPayload; severity: RequestExecutionExceptionSeverity; errors: RequestExecutionExceptionErrorType[]; } export { RequestExecutionExceptionSeverity, RequestExecutionExceptionPayload, RequestExecutionExceptionErrorType, RequestExecutionExceptionType, };