@sap-ux/store
Version:
NPM module for storing persistent data
12 lines • 548 B
TypeScript
import type { Logger } from '@sap-ux/logger';
import type { DataAccess } from './index.js';
import type { ServiceOptions } from '../types.js';
/** A hybrid store
* Stores serializable properties on the filesystem
* The properties need to be decorated with `@serilizable` annotations
*
* Sensitive properties (decorated with `@sensitiveData`) will be stored
* in the system's secure store
*/
export declare function getHybridStore<E extends object>(logger: Logger, options?: ServiceOptions): DataAccess<E>;
//# sourceMappingURL=hybrid.d.ts.map