UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

14 lines 321 B
import Storage from './Storage.cjs'; /** * Dataset factory. * * Reference: * https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/storage */ export default class StorageFactory { /** * Creates a new storage. */ static createStorage(): Storage; } //# sourceMappingURL=StorageFactory.d.ts.map