profit-bar-animation-chart.ts 177 B

123456
  1. import { Observable } from 'rxjs';
  2. export abstract class ProfitBarAnimationChartData {
  3. abstract getChartData(): Observable<{ firstLine: number[]; secondLine: number[]; }>;
  4. }