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

VarTree

import type { VarTree } from "https://raw.githubusercontent.com/Hatscat/MetavaScript/main/index.ts";

recursive type to represent nested variable collection

type VarTree = {
[key: string]: string | VarTree;
}
;

§Type

§
{
[key: string]: string | VarTree;
}
[src]