UNPKG

covid19nys-ts

Version:

Track COVID-19 cases in NYS, rewritten in TypeScript.

11 lines (10 loc) 376 B
#!/usr/bin/env node declare const axios: any; declare const cheerio: any; declare const NYS_HEALTH_URL = "https://health.ny.gov/statistics/diseases/communicable/2019-nCoV/new_york_state_positive_cases_by_county.htm"; interface CountyData { name: string; cases: number; } declare function getCountyData(): Promise<CountyData[]>; declare function main(): Promise<void>;