export type TickerPair = { from: string; to: string; }; export type TickerAttributes = { sourceId: string; deal: string; pairs: TickerPair[]; amount: string; adjustmentPercent: number; theme: 'auto' | 'light' | 'dark'; decimals: number; showFlags: boolean; showChange: boolean; currencyLabelMode: 'code' | 'name'; speed: number; direction: 'left' | 'right'; pauseOnHover: boolean; borderX: boolean; borderY: boolean; separator: 'dot' | 'pipe' | 'slash' | 'none'; showTimestamp: boolean; attribution: boolean; compactMode: boolean; sourceLabel: string; };