9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
export interface ProfitChart {
|
|
chartLabel: string[];
|
|
data: number[][];
|
|
}
|
|
|
|
export abstract class ProfitChartData {
|
|
abstract getProfitChartData(period: string): ProfitChart;
|
|
}
|