mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 07:13:32 +00:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
import { EncString } from "@bitwarden/common/models/domain/enc-string";
|
|
|
|
import { MessageCommon } from "./messageCommon";
|
|
|
|
export type EncryptedMessageResponse = MessageCommon & {
|
|
encryptedPayload: EncString;
|
|
};
|