fix(f4): expose recurrence state and close ci type gaps

This commit is contained in:
2026-09-08 13:52:24 -03:00
parent 95a41f39d7
commit 30353c338b
6 changed files with 64 additions and 7 deletions
+11
View File
@@ -0,0 +1,11 @@
import './api';
declare module './api' {
interface InspectionFinding {
isRecurrence: boolean;
recurrenceOfFindingId: string | null;
recurrenceOfFindingCode: string | null;
}
}
export {};