mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-08 07:11:35 +00:00
83410c174e
* Fix book loading * Fix Robot page * Code Review * Book coordinator filter
9 lines
149 B
TypeScript
9 lines
149 B
TypeScript
export interface Favorites {
|
|
type: number | null;
|
|
mode: 'swap' | 'fiat';
|
|
currency: number;
|
|
coordinator: string;
|
|
}
|
|
|
|
export default Favorites;
|