1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

Revert "reference barrels"

This reverts commit 2d9f53fbed.
This commit is contained in:
Kyle Spearrin
2018-02-19 13:07:19 -05:00
parent 2d9f53fbed
commit 166ed44392
62 changed files with 223 additions and 293 deletions

View File

@@ -1,4 +1,4 @@
import { AttachmentResponse } from '../response';
import { AttachmentResponse } from '../response/attachmentResponse';
export class AttachmentData {
id: string;

View File

@@ -1,4 +1,4 @@
import { CipherType } from '../../enums';
import { CipherType } from '../../enums/cipherType';
import { AttachmentData } from './attachmentData';
import { CardData } from './cardData';
@@ -7,7 +7,7 @@ import { IdentityData } from './identityData';
import { LoginData } from './loginData';
import { SecureNoteData } from './secureNoteData';
import { CipherResponse } from '../response';
import { CipherResponse } from '../response/cipherResponse';
export class CipherData {
id: string;

View File

@@ -1,4 +1,4 @@
import { CollectionResponse } from '../response';
import { CollectionResponse } from '../response/collectionResponse';
export class CollectionData {
id: string;

View File

@@ -1,4 +1,4 @@
import { FieldType } from '../../enums';
import { FieldType } from '../../enums/fieldType';
export class FieldData {
type: FieldType;

View File

@@ -1,4 +1,4 @@
import { FolderResponse } from '../response';
import { FolderResponse } from '../response/folderResponse';
export class FolderData {
id: string;

View File

@@ -1,4 +1,4 @@
import { SecureNoteType } from '../../enums';
import { SecureNoteType } from '../../enums/secureNoteType';
export class SecureNoteData {
type: SecureNoteType;