Module Dom.Storage
type t;let getItem: string => t => option(string);let setItem: string => string => t => unit;let removeItem: string => t => unit;let clear: t => unit;let key: int => t => option(string);let length: t => int;let localStorage: t;let sessionStorage: t;