This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const COUNTRY = "UK" | |
const API__URL = `https://corona.lmao.ninja/v2/countries/${COUNTRY}?yesterday=true&strict=true&query=` | |
const API__REQ = new Request(API__URL) | |
const API__RES = await API__REQ.loadJSON() | |
const TEXT__TITLE = { default: `🦠 COVID Statistics for ${COUNTRY}`, smallWidget: "🦠 COVID Stats" } | |
const TEXT__TOTAL_CASES = "Total Cases" | |
const TEXT__CASES_TODAY = "Cases Today" | |
const TEXT__TOTAL_DEATHS = "Total Deaths" |