mirror of
https://github.com/bitwarden/browser
synced 2026-02-23 16:13:21 +00:00
* Move Encstring to KM ownership * Fix wrong import * Fix build * Fix remaining imports * Fix tests
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import { EncString } from "@bitwarden/common/key-management/crypto/models/enc-string";
|
|
|
|
import { LegacyMessage } from "./legacy-message";
|
|
|
|
export type LegacyMessageWrapper = {
|
|
message: LegacyMessage | EncString;
|
|
appId: string;
|
|
};
|