@unilogin/sdk
Version:
SDK is a JS library, that communicates with relayer. SDK allows managing contract, by creating basic contract-calling messages.
16 lines • 509 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var NoopStorageService = /** @class */ (function () {
function NoopStorageService() {
}
NoopStorageService.prototype.get = function () {
return null;
};
NoopStorageService.prototype.remove = function () {
};
NoopStorageService.prototype.set = function () {
};
return NoopStorageService;
}());
exports.NoopStorageService = NoopStorageService;
//# sourceMappingURL=NoopStorageService.js.map
;