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

Struct

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

Struct represents a structured data value, consisting of fields which map to dynamically typed values.

interface Struct {
fields?: {
[key: string]: Value;
}
;
}

§Properties

§
fields?: {
[key: string]: Value;
}
[src]

Unordered map of dynamically typed values.