mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-19 09:14:27 +08:00
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