A LegiArticle TITRE_TM is an array

This commit is contained in:
Emmanuel 2024-05-19 21:25:15 +02:00
parent 1213cf763f
commit 3bfbf58bc4

View file

@ -93,12 +93,12 @@ export type LegiArticleTexteNature = (typeof allLegiArticleTexteNatures)[number]
/// Table des matières (TM) /// Table des matières (TM)
export interface LegiArticleTm { export interface LegiArticleTm {
TITRE_TM: { TITRE_TM: Array<{
"#text": string "#text": string
"@debut": string "@debut": string
"@fin": string "@fin": string
"@id": string "@id": string
} }>
TM?: LegiArticleTm TM?: LegiArticleTm
} }