UNPKG

@sap-ux/store

Version:

NPM module for storing persistent data

18 lines 651 B
import type { EntityKey } from './index.js'; /** This represents the migration status of the systems from pure secure store * the hybrid filesystem/secure store */ export declare class SystemMigrationStatus { readonly migrationDone: boolean; readonly authTypeMigrated: boolean; readonly migrationLogs: string[]; constructor({ authTypeMigrated, migrationDone, migrationLogs }: { authTypeMigrated: boolean; migrationDone: boolean; migrationLogs: string[]; }); } export declare class SystemMigrationStatusKey implements EntityKey { getId(): string; } //# sourceMappingURL=system-migration-status.d.ts.map