mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-03 13:33:32 +01:00
25711afaf6
* [PM-5976] Safari Browser SSO Initialization Race Condition Attempted Fix 3 * [PM-5976] Safari Browser SSO Initialization Race Condition Attempted Fix 3 * [PM-5976] Removing usage of pinging system and keeping reworked top-level registration of window message listener events * [PM-5976] Pulling the implementation of the static content script delcaration for the content-message-handler file to the top of the list of content_scripts * [PM-5976] Pulling the implementation of the static content script delcaration for the content-message-handler file to the top of the list of content_scripts * [PM-5976] Removing the useCapture value within the window message event listener
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
import { AutofillInit } from "./content/abstractions/autofill-init";
|
|
|
|
declare global {
|
|
interface Window {
|
|
bitwardenAutofillInit?: AutofillInit;
|
|
}
|
|
}
|