1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

rename exported models

This commit is contained in:
Kyle Spearrin
2018-01-08 16:22:05 -05:00
parent 1d9f28e185
commit 2b387058bd
3 changed files with 31 additions and 31 deletions

View File

@@ -1,9 +1,9 @@
export { AttachmentData } from './attachmentData';
export { CardData } from './cardData';
export { CipherData } from './cipherData';
export { CollectionData } from './collectionData';
export { FieldData } from './fieldData';
export { FolderData } from './folderData';
export { IdentityData } from './identityData';
export { LoginData } from './loginData';
export { SecureNoteData } from './secureNoteData';
export { AttachmentData as Attachment } from './attachmentData';
export { CardData as Card } from './cardData';
export { CipherData as Cipher } from './cipherData';
export { CollectionData as Collection } from './collectionData';
export { FieldData as Field } from './fieldData';
export { FolderData as Folder } from './folderData';
export { IdentityData as Identity } from './identityData';
export { LoginData as Login } from './loginData';
export { SecureNoteData as SecureNote } from './secureNoteData';