deno / 1.23.2 / ~ / deno.env.html /

Deno.env

const env : {
get(key: string): string | undefined;
set(key: string, value: string): void;
delete(key: string): void;
toObject(): {
[index: string]: string;
}
;
}
;

© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.env