Skip to content
Snippets Groups Projects
ExtraDataDTO.ts 394 B
Newer Older
import AdultPAL from './AdultPALDTO';
import IndividualMaternity from './IndividualMaternityDTO';
import MinorPAL from './MinorPALDTO';
import PopulationMaternity from './PopulationMaternityDTO';

type ExtraData = {
  minorPAL: MinorPAL | undefined;
  adultPAL: AdultPAL | undefined;
  maternity: IndividualMaternity | PopulationMaternity | undefined;