Export type Echeancier
This commit is contained in:
parent
5529f71bc8
commit
fc6c6f93f1
3 changed files with 8 additions and 5 deletions
|
@ -101,6 +101,7 @@ export {
|
|||
allSens,
|
||||
allSensMutable,
|
||||
type DossierLegislatif,
|
||||
type Echeancier,
|
||||
type EcheancierLigne,
|
||||
type Jo,
|
||||
type JoNature,
|
||||
|
|
|
@ -23,10 +23,7 @@ export interface DossierLegislatif {
|
|||
CONTENU_DOSSIER_3?: string
|
||||
CONTENU_DOSSIER_4?: string
|
||||
CONTENU_DOSSIER_5?: string
|
||||
ECHEANCIER?: {
|
||||
"@derniere_maj"?: string
|
||||
LIGNE: EcheancierLigne[]
|
||||
}
|
||||
ECHEANCIER?: Echeancier
|
||||
EXPOSE_MOTIF?: string
|
||||
LIBELLE_TEXTE_1?: string
|
||||
LIBELLE_TEXTE_2?: string
|
||||
|
@ -67,6 +64,11 @@ export interface DossierLegislatif {
|
|||
}
|
||||
}
|
||||
|
||||
export interface Echeancier {
|
||||
"@derniere_maj"?: string
|
||||
LIGNE: EcheancierLigne[]
|
||||
}
|
||||
|
||||
export interface EcheancierLigne {
|
||||
ARTICLE?: string
|
||||
BASE_LEGALE?: string
|
||||
|
|
|
@ -4,7 +4,7 @@ import type { DossierLegislatif } from "./dole"
|
|||
|
||||
import type { Jo } from "./jorf"
|
||||
|
||||
export type { DossierLegislatif, EcheancierLigne } from "./dole"
|
||||
export type { DossierLegislatif, Echeancier, EcheancierLigne } from "./dole"
|
||||
export {
|
||||
allJoNatures,
|
||||
allJoNaturesMutable,
|
||||
|
|
Loading…
Reference in a new issue