Files
standardnotes-app-web/packages/snjs/lib/Migrations/MigrationServices.ts
2022-07-06 14:04:30 +02:00

21 lines
892 B
TypeScript

import { SNSessionManager } from '../Services/Session/SessionManager'
import { ApplicationIdentifier } from '@standardnotes/common'
import { ItemManager } from '@Lib/Services/Items/ItemManager'
import { EncryptionService } from '@standardnotes/encryption'
import { DeviceInterface, InternalEventBusInterface, Environment } from '@standardnotes/services'
import { ChallengeService, SNSingletonManager, SNFeaturesService, DiskStorageService } from '@Lib/Services'
export type MigrationServices = {
protocolService: EncryptionService
deviceInterface: DeviceInterface
storageService: DiskStorageService
challengeService: ChallengeService
sessionManager: SNSessionManager
itemManager: ItemManager
singletonManager: SNSingletonManager
featuresService: SNFeaturesService
environment: Environment
identifier: ApplicationIdentifier
internalEventBus: InternalEventBusInterface
}