initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export interface ProfitChart {
|
||||
chartLabel: string[];
|
||||
data: number[][];
|
||||
}
|
||||
|
||||
export abstract class ProfitChartData {
|
||||
abstract getProfitChartData(period: string): ProfitChart;
|
||||
}
|
||||
Reference in New Issue
Block a user