mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-09 15:51:34 +00:00
7 lines
101 B
TypeScript
7 lines
101 B
TypeScript
|
export interface Favorites {
|
||
|
type: number | null;
|
||
|
currency: number;
|
||
|
}
|
||
|
|
||
|
export default Favorites;
|