From c89b7f4f51ba2cb42e6a9d2424da268ffcc03acc Mon Sep 17 00:00:00 2001 From: baudointran Date: Tue, 9 Jul 2024 11:20:24 +0200 Subject: [PATCH] fix: type DossierWithCustomChamp for annotation --- src/dossier/custom-champ.type.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dossier/custom-champ.type.ts b/src/dossier/custom-champ.type.ts index 039232b..0826835 100644 --- a/src/dossier/custom-champ.type.ts +++ b/src/dossier/custom-champ.type.ts @@ -3,6 +3,8 @@ import { Champ, ChampDescriptor, Dossier } from "../@types/types"; export type CustomChamp = Champ & { champDescriptor: ChampDescriptor; }; + export type DossierWithCustomChamp = Dossier & { champs: Array; + annotations: Array; };