From 3bfbf58bc46022a038c4ddba2296066b7fdf9e85 Mon Sep 17 00:00:00 2001 From: Emmanuel Raviart Date: Sun, 19 May 2024 21:25:15 +0200 Subject: [PATCH] A LegiArticle TITRE_TM is an array --- src/lib/legal/legi.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/legal/legi.ts b/src/lib/legal/legi.ts index ba65161..64815b3 100644 --- a/src/lib/legal/legi.ts +++ b/src/lib/legal/legi.ts @@ -93,12 +93,12 @@ export type LegiArticleTexteNature = (typeof allLegiArticleTexteNatures)[number] /// Table des matières (TM) export interface LegiArticleTm { - TITRE_TM: { + TITRE_TM: Array<{ "#text": string "@debut": string "@fin": string "@id": string - } + }> TM?: LegiArticleTm }