Refactor browser extension to use shared types, add import order lint rules (#900)

This commit is contained in:
Leendert de Borst
2025-06-08 16:56:41 +02:00
committed by Leendert de Borst
parent c6d7d16b27
commit 22acea0e35
72 changed files with 482 additions and 379 deletions

View File

@@ -1,9 +1,7 @@
type BadRequestResponse = {
export type BadRequestResponse = {
type: string;
title: string;
status: number;
errors: Record<string, string[]>;
traceId: string;
};
export default BadRequestResponse;