Vizzuality/landgriffon

View on GitHub
api/src/modules/eudr-alerts/dto/alerts-output.dto.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type AlertsOutput = {
  alertCount: number;
  alertDate: {
    value: Date | string;
  };
  year: number;
  supplierId: string;
  geoRegionId: string;
  carbonRemovals: number;
};

export type AlertGeometry = {
  geometry: { value: string };
};

export type AlertsWithGeom = AlertsOutput & AlertGeometry;