Export type Echeancier

This commit is contained in:
Emmanuel 2023-05-19 14:45:26 +02:00
parent 5529f71bc8
commit fc6c6f93f1
3 changed files with 8 additions and 5 deletions

View file

@ -101,6 +101,7 @@ export {
allSens, allSens,
allSensMutable, allSensMutable,
type DossierLegislatif, type DossierLegislatif,
type Echeancier,
type EcheancierLigne, type EcheancierLigne,
type Jo, type Jo,
type JoNature, type JoNature,

View file

@ -23,10 +23,7 @@ export interface DossierLegislatif {
CONTENU_DOSSIER_3?: string CONTENU_DOSSIER_3?: string
CONTENU_DOSSIER_4?: string CONTENU_DOSSIER_4?: string
CONTENU_DOSSIER_5?: string CONTENU_DOSSIER_5?: string
ECHEANCIER?: { ECHEANCIER?: Echeancier
"@derniere_maj"?: string
LIGNE: EcheancierLigne[]
}
EXPOSE_MOTIF?: string EXPOSE_MOTIF?: string
LIBELLE_TEXTE_1?: string LIBELLE_TEXTE_1?: string
LIBELLE_TEXTE_2?: string LIBELLE_TEXTE_2?: string
@ -67,6 +64,11 @@ export interface DossierLegislatif {
} }
} }
export interface Echeancier {
"@derniere_maj"?: string
LIGNE: EcheancierLigne[]
}
export interface EcheancierLigne { export interface EcheancierLigne {
ARTICLE?: string ARTICLE?: string
BASE_LEGALE?: string BASE_LEGALE?: string

View file

@ -4,7 +4,7 @@ import type { DossierLegislatif } from "./dole"
import type { Jo } from "./jorf" import type { Jo } from "./jorf"
export type { DossierLegislatif, EcheancierLigne } from "./dole" export type { DossierLegislatif, Echeancier, EcheancierLigne } from "./dole"
export { export {
allJoNatures, allJoNatures,
allJoNaturesMutable, allJoNaturesMutable,