Skip to content

Commit 0761062

Browse files
authoredOct 30, 2023
fix: missing export types in localSearch (#3157)
1 parent 2276c1d commit 0761062

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎types/local-search.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ export interface LocalSearchTranslations {
33
modal?: ModalTranslations
44
}
55

6-
interface ButtonTranslations {
6+
export interface ButtonTranslations {
77
buttonText?: string
88
buttonAriaLabel?: string
99
}
1010

11-
interface ModalTranslations {
11+
export interface ModalTranslations {
1212
displayDetails?: string
1313
resetButtonTitle?: string
1414
backButtonTitle?: string
1515
noResultsText?: string
1616
footer?: FooterTranslations
1717
}
1818

19-
interface FooterTranslations {
19+
export interface FooterTranslations {
2020
selectText?: string
2121
selectKeyAriaLabel?: string
2222
navigateText?: string

0 commit comments

Comments
 (0)
Please sign in to comment.