6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
import { Observable } from 'rxjs';
|
|
|
|
export abstract class ProfitBarAnimationChartData {
|
|
abstract getChartData(): Observable<{ firstLine: number[]; secondLine: number[]; }>;
|
|
}
|