robosats/frontend/src/models/Limit.model.ts
2023-05-08 17:37:23 -07:00

12 lines
206 B
TypeScript

export interface Limit {
code: string;
price: number;
min_amount: number;
max_amount: number;
max_bondless_amount: number;
}
export type LimitList = Record<string, Limit>;
export default Limit;