Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ValuesOnDate

Defines the structure of an object which contains all the data on a certain date.

Hierarchy

Index

Properties

activeCases

activeCases: number | null

The number of active cases on this date. null if either the deaths or recovered data is not available, as without them the number of active cases cannot be calculated.

caseFatalityRate

caseFatalityRate: number | null

The case fatality rate on this date. null if this information is not available.

confirmed

confirmed: number

The number of confirmed cases.

date

date: string

The date of the values.

deaths

deaths: number | null

The number of deaths. null if this information is not available.

newConfirmed

newConfirmed: number

The number of new confirmed cases on this date.

newDeaths

newDeaths: number | null

The number of new deaths on this date. null if this information is not available.

newRecovered

newRecovered: number | null

The number of new recoveries on this date. null if this information is not available.

recovered

recovered: number | null

The number of recoveries. null if this information is not available.

recoveryRate

recoveryRate: number | null

The recovery rate out of all confirmed cases.

Generated using TypeDoc