You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vitepress/types/offline-search.d.ts

24 lines
482 B

export interface OfflineSearchTranslations {
button?: ButtonTranslations
modal?: ModalTranslations
}
interface ButtonTranslations {
buttonText?: string
buttonAriaLabel?: string
}
interface ModalTranslations {
displayDetails?: string
noResultsText?: string
footer?: FooterTranslations
}
interface FooterTranslations {
selectText?: string
selectKeyAriaLabel?: string
navigateText?: string
navigateUpKeyAriaLabel?: string
navigateDownKeyAriaLabel?: string
}