feat: 接入公开币种目录并统一多币种金额与语言初始化处理
This commit is contained in:
10
src/types/api/currency.ts
Normal file
10
src/types/api/currency.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export type PublicCurrencyRow = {
|
||||
code: string;
|
||||
name: string;
|
||||
decimal_places: number;
|
||||
is_bettable: boolean;
|
||||
};
|
||||
|
||||
export type PublicCurrencyListData = {
|
||||
items: PublicCurrencyRow[];
|
||||
};
|
||||
Reference in New Issue
Block a user