Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CustomLocalAqi

import type { CustomLocalAqi } from "https://googleapis.deno.dev/v1/airquality:v1.ts";

Expresses a 'country/region to AQI' relationship. Pairs a country/region with a desired AQI so that air quality data that is required for that country/region will be displayed according to the chosen AQI.

interface CustomLocalAqi {
aqi?: string;
regionCode?: string;
}

§Properties

§
aqi?: string
[src]

The AQI to associate the country/region with. Value should be a valid index code.

§
regionCode?: string
[src]

The country/region requiring the custom AQI. Value should be provided using ISO 3166-1 alpha-2 code.