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

Deno.env

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