fix: missing export types in localSearch (#3157)

pull/3165/head
烽宁 11 months ago committed by GitHub
parent 2276c1d4da
commit 0761062790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,12 +3,12 @@ export interface LocalSearchTranslations {
modal?: ModalTranslations modal?: ModalTranslations
} }
interface ButtonTranslations { export interface ButtonTranslations {
buttonText?: string buttonText?: string
buttonAriaLabel?: string buttonAriaLabel?: string
} }
interface ModalTranslations { export interface ModalTranslations {
displayDetails?: string displayDetails?: string
resetButtonTitle?: string resetButtonTitle?: string
backButtonTitle?: string backButtonTitle?: string
@ -16,7 +16,7 @@ interface ModalTranslations {
footer?: FooterTranslations footer?: FooterTranslations
} }
interface FooterTranslations { export interface FooterTranslations {
selectText?: string selectText?: string
selectKeyAriaLabel?: string selectKeyAriaLabel?: string
navigateText?: string navigateText?: string

Loading…
Cancel
Save