create investment endpoint for analysis timeline

Co-authored-by: Thomas <dotsilver@gmail.com>
This commit is contained in:
Valentin Zickner
2021-07-31 21:33:45 +02:00
committed by Thomas
parent 4a0695613e
commit de83dc7b84
8 changed files with 78 additions and 57 deletions

View File

@@ -0,0 +1,4 @@
export interface InvestmentItem {
date: string;
investment: number;
}