Module Dom.DomStringMap

type t = Dom.domStringMap;
type key = string;
let get: t => key => option(string);
let get: key => t => option(string);
let set: t => key => string => unit;
let set: key => string => t => unit;
let unsafeDeleteKey: key => t => unit;