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

DOMStringMap

Used by the dataset HTML attribute to represent data for custom attributes added to elements.

interface DOMStringMap {
[name: string]: string | undefined;
}
var DOMStringMap: {
prototype: DOMStringMap;
new (): DOMStringMap;
}
;

§Index Signatures

§
[name: string]: string | undefined