migrate exchange rates page to composition API and typescript

This commit is contained in:
MaysWind
2025-01-12 19:23:20 +08:00
parent 41452ac20b
commit c5f03165bc
7 changed files with 316 additions and 262 deletions
+6
View File
@@ -10,3 +10,9 @@ export interface LatestExchangeRateResponse {
readonly baseCurrency: string;
readonly exchangeRates: LatestExchangeRate[];
}
export interface LocalizedLatestExchangeRate {
readonly currencyCode: string;
readonly currencyDisplayName: string;
readonly rate: string;
}