mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
3 years ago
committed by
GitHub
17 changed files with 83 additions and 19 deletions
@ -0,0 +1,6 @@ |
|||
import { UniqueAsset } from '../unique-asset.interface'; |
|||
|
|||
export interface ResponseError { |
|||
errors?: UniqueAsset[]; |
|||
hasErrors: boolean; |
|||
} |
@ -0,0 +1,6 @@ |
|||
import { PortfolioPerformance } from '../portfolio-performance.interface'; |
|||
import { ResponseError } from './errors.interface'; |
|||
|
|||
export interface PortfolioPerformanceResponse extends ResponseError { |
|||
performance: PortfolioPerformance; |
|||
} |
Loading…
Reference in new issue