GET /api/county/:id
example /api/county/05|032
no params = give all date Just start = all dates after start
start?: string (ex: "2020-21-1")
Case array order DESC
{
ID: string; (ex: "05|032")
CountyName: string;
StateName: string;
Confirmed: number;
Dead: number;
}[]
GET /api/state/:id
example /api/state/05
no params = give all date Just start = all dates after start
start?: string (ex: "2020-21-1")
Case array order DESC
{
ID: string; (ex: "05")
StateName: string;
Confirmed: number;
Dead: number;
}[]