1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-09 19:28:06 +01:00

[PM-5189] Correcting typing information

This commit is contained in:
Cesar Gonzalez 2024-06-11 08:55:59 -05:00
parent fa6bbbd252
commit 8bfa02eeea
No known key found for this signature in database
GPG Key ID: 3381A5457F8CCECF

View File

@ -8,14 +8,14 @@ type AutofillInlineMenuContainerMessage = {
};
export type InitAutofillInlineMenuElementMessage = AutofillInlineMenuContainerMessage & {
iframeUrl?: string;
pageTitle?: string;
authStatus?: AuthenticationStatus;
styleSheetUrl?: string;
theme?: string;
translations?: Record<string, string>;
ciphers?: InlineMenuCipherData[];
portName?: string;
iframeUrl: string;
pageTitle: string;
authStatus: AuthenticationStatus;
styleSheetUrl: string;
theme: string;
translations: Record<string, string>;
ciphers: InlineMenuCipherData[] | null;
portName: string;
};
export type AutofillInlineMenuContainerWindowMessageHandlers = {