mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
|
import { MessageCommon } from "./messageCommon";
|
||
|
import { UnencryptedCommand } from "./unencryptedCommand";
|
||
|
|
||
|
export type UnencryptedMessage = MessageCommon & {
|
||
|
command: UnencryptedCommand;
|
||
|
payload: {
|
||
|
publicKey: string;
|
||
|
applicationName: string;
|
||
|
};
|
||
|
};
|