mirror of
https://github.com/bitwarden/browser
synced 2025-12-29 22:53:44 +00:00
10 lines
350 B
TypeScript
10 lines
350 B
TypeScript
export const AUTOTYPE_IPC_CHANNELS = {
|
|
INIT: "autofill.initAutotype",
|
|
INITIALIZED: "autofill.autotypeIsInitialized",
|
|
TOGGLE: "autofill.toggleAutotype",
|
|
CONFIGURE: "autofill.configureAutotype",
|
|
LISTEN: "autofill.listenAutotypeRequest",
|
|
EXECUTION_ERROR: "autofill.autotypeExecutionError",
|
|
EXECUTE: "autofill.executeAutotype",
|
|
} as const;
|