Files
aliasvault/shared/models/src/webapi/BadRequestResponse.ts

8 lines
144 B
TypeScript

export type BadRequestResponse = {
type: string;
title: string;
status: number;
errors: Record<string, string[]>;
traceId: string;
};