Module Dom_storage2

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