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

reference barrels

This commit is contained in:
Kyle Spearrin
2018-02-19 12:33:32 -05:00
parent 36315dae19
commit 2d9f53fbed
62 changed files with 293 additions and 223 deletions

View File

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

View File

@@ -1,4 +1,4 @@
import { CipherType } from '../../enums/cipherType';
import { CipherType } from '../../enums';
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/cipherResponse';
import { CipherResponse } from '../response';
export class CipherData {
id: string;

View File

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

View File

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

View File

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

View File

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