mirror of
https://github.com/bitwarden/browser
synced 2025-12-27 13:43:41 +00:00
* Move Encstring to KM ownership * Fix wrong import * Fix build * Fix remaining imports * Fix tests
9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
import { EncString } from "@bitwarden/common/key-management/crypto/models/enc-string";
|
|
|
|
import { MessageCommon } from "./message-common";
|
|
|
|
export type EncryptedMessage = MessageCommon & {
|
|
// Will decrypt to a DecryptedCommandData object
|
|
encryptedCommand: EncString;
|
|
};
|