16 lines
303 B
TypeScript
16 lines
303 B
TypeScript
export interface homeTranslations {
|
|
alertMessage: string;
|
|
translate: string;
|
|
searchButton: string;
|
|
searchPlaceholder: string;
|
|
menuPlaces: string;
|
|
}
|
|
|
|
export interface listTranslations {
|
|
translate: string;
|
|
locationName: string;
|
|
distance: string;
|
|
positionNotFoundErrorMessage: string;
|
|
}
|
|
|