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

Concentration

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

The concentration of a given pollutant in the air.

interface Concentration {
units?: "UNIT_UNSPECIFIED" | "PARTS_PER_BILLION" | "MICROGRAMS_PER_CUBIC_METER";
value?: number;
}

§Properties

§
units?: "UNIT_UNSPECIFIED" | "PARTS_PER_BILLION" | "MICROGRAMS_PER_CUBIC_METER"
[src]

Units for measuring this pollutant concentration.

§
value?: number
[src]

Value of the pollutant concentration.