UNPKG

happy-dom-without-node

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 320 B
import Storage from './Storage.js'; /** * 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