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

EnvironmentVariable

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

A name-value pair representing an environment variable used in an operating system process.

interface EnvironmentVariable {
name?: string;
val?: string;
}

§Properties

§
name?: string
[src]

Environment variable name as a JSON encoded string.

§
val?: string
[src]

Environment variable value as a JSON encoded string.