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

Mandarine.EnvironmentalReference

import type { Mandarine } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/main-core/Mandarine.ns.ts"; 

const { EnvironmentalReference } = Mandarine;

${MY_VAR} will be considered an environmental reference. The environmental reference will be parsed by CommonUtils.getEnvironmentalReferences and CommonUtils.getEnvironmentalReferences will return an array of EnvironmentalReference

 ${MY_VAR}
 fullReference: ${MY_VAR}
 variable: MY_VAR
 environmentalValue: Deno.env.get("MY_VAR")
interface EnvironmentalReference {
environmentalValue: string | undefined;
fullReference: string;
variable: string;
}

§Properties

§
environmentalValue: string | undefined
[src]
§
fullReference: string
[src]
§
variable: string
[src]