mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
* Move Encstring to KM ownership * Fix wrong import * Fix build * Fix remaining imports * Fix tests
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import { EncString } from "@bitwarden/common/key-management/crypto/models/enc-string";
|
|
|
|
import { MessageCommon } from "./message-common";
|
|
|
|
export type EncryptedMessageResponse = MessageCommon & {
|
|
encryptedPayload: EncString;
|
|
};
|