1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-29 22:53:44 +00:00

remove the type qualifier

This commit is contained in:
neuronull
2025-10-29 15:52:56 -06:00
parent d59a53054c
commit 7cf1cc016a

View File

@@ -1,9 +1,9 @@
export const AUTOTYPE_IPC_CHANNELS = {
INIT: "autofill.initAutotype" as string,
INITIALIZED: "autofill.autotypeIsInitialized" as string,
TOGGLE: "autofill.toggleAutotype" as string,
CONFIGURE: "autofill.configureAutotype" as string,
LISTEN: "autofill.listenAutotypeRequest" as string,
EXECUTION_ERROR: "autofill.autotypeExecutionError" as string,
EXECUTE: "autofill.executeAutotype" as string,
INIT: "autofill.initAutotype",
INITIALIZED: "autofill.autotypeIsInitialized",
TOGGLE: "autofill.toggleAutotype",
CONFIGURE: "autofill.configureAutotype",
LISTEN: "autofill.listenAutotypeRequest",
EXECUTION_ERROR: "autofill.autotypeExecutionError",
EXECUTE: "autofill.executeAutotype",
} as const;