mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
support for new attachment keys
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import { View } from './view';
|
||||
|
||||
import { Attachment } from '../domain/attachment';
|
||||
import { SymmetricCryptoKey } from '../domain/symmetricCryptoKey';
|
||||
|
||||
export class AttachmentView implements View {
|
||||
id: string;
|
||||
@@ -8,6 +9,7 @@ export class AttachmentView implements View {
|
||||
size: number;
|
||||
sizeName: string;
|
||||
fileName: string;
|
||||
key: SymmetricCryptoKey;
|
||||
|
||||
constructor(a?: Attachment) {
|
||||
if (!a) {
|
||||
|
||||
Reference in New Issue
Block a user