1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00
Files
browser/apps/desktop/src/models/native-messaging/encrypted-message-response.ts
Bernd Schoolmann 60855c734f [PM-17666] Move Encstring to KM ownership (#15457)
* Move Encstring to KM ownership

* Fix wrong import

* Fix build

* Fix remaining imports

* Fix tests
2025-07-16 11:15:24 -04:00

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;
};