mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
|
import { EncString } from "@bitwarden/common/models/domain/encString";
|
||
|
|
||
|
import { MessageCommon } from "./messageCommon";
|
||
|
|
||
|
export type EncryptedMessageResponse = MessageCommon & {
|
||
|
encryptedPayload: EncString;
|
||
|
};
|