mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-16 03:15:47 -04:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
export type BadRequestResponse = {
|
|
type: string;
|
|
title: string;
|
|
status: number;
|
|
errors: Record<string, string[]>;
|
|
traceId: string;
|
|
};
|