react-native-unit-components
Version:
Unit React Native components
23 lines (22 loc) • 563 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _reactNative = require("react-native");
const {
UNStoreManager
} = _reactNative.NativeModules;
class UNStoreManagerHelper {
static saveValue(key, value) {
UNStoreManager.saveValue(key, value);
}
static async getValue(key) {
return UNStoreManager.getValue(key);
}
static cleanValue(key) {
UNStoreManager.cleanValue(key);
}
}
var _default = exports.default = UNStoreManagerHelper;
//# sourceMappingURL=UNStoreManagerHelper.js.map
;