2022-10-20 17:24:53 +00:00
|
|
|
export interface Favorites {
|
|
|
|
type: number | null;
|
2023-02-10 13:28:26 +00:00
|
|
|
mode: 'swap' | 'fiat';
|
2022-10-20 17:24:53 +00:00
|
|
|
currency: number;
|
2024-01-23 23:32:00 +00:00
|
|
|
coordinator: string;
|
2022-10-20 17:24:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Favorites;
|