@tmawallet/sdk
Version:
TMA Wallet SDK
13 lines • 407 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractStorage = void 0;
/**
* Simple async key-value storage.
* All values are strings. If you try to get non-existent key, you'll get empty string ('').
*
* Up to 128 keys, up to 1024 bytes per key.
*/
class AbstractStorage {
}
exports.AbstractStorage = AbstractStorage;
//# sourceMappingURL=AbstractStorage.js.map