Skip to content

Commit

Permalink
fix: missing export types in localSearch (#3157)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonreyes9 committed Oct 30, 2023
1 parent 9c02f04 commit 5a82719
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/local-search.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ 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
noResultsText?: string
footer?: FooterTranslations
}

interface FooterTranslations {
export interface FooterTranslations {
selectText?: string
selectKeyAriaLabel?: string
navigateText?: string
Expand Down

0 comments on commit 5a82719

Please sign in to comment.