1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

moved service abstractions to lib

This commit is contained in:
Kyle Spearrin
2018-01-06 15:47:23 -05:00
parent 0f0b092ed7
commit 108eafaea3
5 changed files with 35 additions and 0 deletions

View File

@@ -3,3 +3,8 @@ export { DeviceType } from './enums/deviceType.enum';
export { EncryptionType } from './enums/encryptionType.enum';
export { FieldType } from './enums/fieldType.enum';
export { SecureNoteType } from './enums/secureNoteType.enum';
export { MessagingService } from './services/abstractions/messaging.service';
export { PlatformUtilsService } from './services/abstractions/platformUtils.service';
export { StorageService } from './services/abstractions/storage.service';
export { UtilsService } from './services/abstractions/utils.service';