UNPKG

@autoiit/simple-storage

Version:
10 lines 397 B
// Import the native module. On web, it will be resolved to SimpleStorage.web.ts // and on native platforms to SimpleStorage.ts import SimpleStorageModule from './SimpleStorageModule'; export function getItem(keyName) { return SimpleStorageModule.getItem(keyName); } export function setItem(keyName, value) { SimpleStorageModule.setItem(keyName, value); } //# sourceMappingURL=index.js.map