UNPKG

browser-storage-utilities

Version:

A front-end library that provides utility methods to facilitate CRUD operations to data stored in the browser, and more.

10 lines 295 B
Object.defineProperty(exports, "__esModule", { value: true }); class StorageItem { constructor(entity) { this.key = entity.key; this.value = entity.value; this.expiry = entity.expiry; } } exports.StorageItem = StorageItem; //# sourceMappingURL=storage-item.js.map