mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
Renamed folders: ./apps/desktop/src/models/nativeMessaging ./apps/desktop/src/models/nativeMessaging/encryptedMessagePayloads ./apps/desktop/src/models/nativeMessaging/encryptedMessageResponses Renamed all files Cleaned up entries in whitelist-capital-letters.txt
7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
import { EncryptedCommand } from "./encrypted-command";
|
|
|
|
export type DecryptedCommandData = {
|
|
command: EncryptedCommand;
|
|
payload?: any;
|
|
};
|