1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00: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

View File

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