Skip to content
Snippets Groups Projects
dju.model.ts 246 B
Newer Older
  • Learn to ignore specific revisions
  • export interface DjuResult {
      fields: string[]
      layer_name: string
      nb_result: number
      table_href: string
      values: DjuMeasure[]
    }
    
    export interface DjuMeasure {
      horodate: string
      measurement: number
      observation: string
      unit: string
    }