// StorageKey is an internal constant, and should be prefixed with the domain.// DO NOT EXPORT IT.constStorageKey="organizations";classOrganizationService {asyncsave(organizations: { [adr:string]:OrganizationData }) {awaitthis._stateService.saveAccountData(this._activeAccount, StorageKey, organizations);awaitthis._organizations$.next(awaitthis.decryptOrgs(this._activeAccount, organizations)); }}