1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +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,6 +1,6 @@
import { View } from './view';
import { Attachment } from '../domain';
import { Attachment } from '../domain/attachment';
export class AttachmentView implements View {
id: string;

View File

@@ -1,6 +1,6 @@
import { View } from './view';
import { Card } from '../domain';
import { Card } from '../domain/card';
export class CardView implements View {
cardholderName: string;

View File

@@ -1,6 +1,6 @@
import { CipherType } from '../../enums';
import { CipherType } from '../../enums/cipherType';
import { Cipher } from '../domain';
import { Cipher } from '../domain/cipher';
import { AttachmentView } from './attachmentView';
import { CardView } from './cardView';

View File

@@ -1,6 +1,6 @@
import { View } from './view';
import { Collection } from '../domain';
import { Collection } from '../domain/collection';
export class CollectionView implements View {
id: string;

View File

@@ -1,8 +1,8 @@
import { FieldType } from '../../enums';
import { FieldType } from '../../enums/fieldType';
import { View } from './view';
import { Field } from '../domain';
import { Field } from '../domain/field';
export class FieldView implements View {
name: string;

View File

@@ -1,6 +1,6 @@
import { View } from './view';
import { Folder } from '../domain';
import { Folder } from '../domain/folder';
export class FolderView implements View {
id: string = null;

View File

@@ -1,6 +1,6 @@
import { View } from './view';
import { Identity } from '../domain';
import { Identity } from '../domain/identity';
export class IdentityView implements View {
title: string = null;

View File

@@ -1,9 +1,7 @@
export { AttachmentView } from './attachmentView';
export { CardView } from './cardView';
export { CipherView } from './cipherView';
export { CollectionView } from './collectionView';
export { FieldView } from './fieldView';
export { FolderView } from './folderView';
export { IdentityView } from './identityView';
export { LoginView } from './loginView';
export { SecureNoteView } from './secureNoteView';

View File

@@ -1,8 +1,8 @@
import { View } from './view';
import { Login } from '../domain';
import { Login } from '../domain/login';
import { PlatformUtilsService } from '../../abstractions';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
export class LoginView implements View {
username: string;

View File

@@ -1,8 +1,8 @@
import { SecureNoteType } from '../../enums';
import { SecureNoteType } from '../../enums/secureNoteType';
import { View } from './view';
import { SecureNote } from '../domain';
import { SecureNote } from '../domain/secureNote';
export class SecureNoteView implements View {
type: SecureNoteType;