From 0761062790b441eccd0d57d51903271f30e713af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=83=BD=E5=AE=81?= Date: Mon, 30 Oct 2023 12:40:13 +0800 Subject: [PATCH] fix: missing export types in localSearch (#3157) --- types/local-search.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/local-search.d.ts b/types/local-search.d.ts index fa7a2890..78811ae0 100644 --- a/types/local-search.d.ts +++ b/types/local-search.d.ts @@ -3,12 +3,12 @@ export interface LocalSearchTranslations { modal?: ModalTranslations } -interface ButtonTranslations { +export interface ButtonTranslations { buttonText?: string buttonAriaLabel?: string } -interface ModalTranslations { +export interface ModalTranslations { displayDetails?: string resetButtonTitle?: string backButtonTitle?: string @@ -16,7 +16,7 @@ interface ModalTranslations { footer?: FooterTranslations } -interface FooterTranslations { +export interface FooterTranslations { selectText?: string selectKeyAriaLabel?: string navigateText?: string