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

Rename CipherString and CipherArrayBuffer to Enc (#352)

This commit is contained in:
Matt Gibson
2021-04-20 19:16:19 -05:00
committed by GitHub
parent a5ccca05da
commit 3a1087456f
44 changed files with 200 additions and 200 deletions

View File

@@ -8,8 +8,8 @@ import { SendData } from '../data/sendData';
import { SendView } from '../view/sendView';
import { CipherString } from './cipherString';
import Domain from './domainBase';
import { EncString } from './encString';
import { SendFile } from './sendFile';
import { SendText } from './sendText';
@@ -18,11 +18,11 @@ export class Send extends Domain {
accessId: string;
userId: string;
type: SendType;
name: CipherString;
notes: CipherString;
name: EncString;
notes: EncString;
file: SendFile;
text: SendText;
key: CipherString;
key: EncString;
maxAccessCount?: number;
accessCount: number;
revisionDate: Date;