migrate services.js to ts
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export interface LatestExchangeRate {
|
||||
readonly currency: string;
|
||||
readonly rate: string;
|
||||
}
|
||||
|
||||
export interface LatestExchangeRateResponse {
|
||||
readonly dataSource: string;
|
||||
readonly referenceUrl: string;
|
||||
readonly updateTime: number;
|
||||
readonly baseCurrency: string;
|
||||
readonly exchangeRates: LatestExchangeRate[];
|
||||
}
|
||||
Reference in New Issue
Block a user