mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
6 months ago
committed by
GitHub
44 changed files with 289 additions and 220 deletions
@ -1,6 +1,6 @@ |
|||
import { UniqueAsset } from '@ghostfolio/common/interfaces'; |
|||
import { AssetProfileIdentifier } from '@ghostfolio/common/interfaces'; |
|||
|
|||
export interface GetValueObject extends UniqueAsset { |
|||
export interface GetValueObject extends AssetProfileIdentifier { |
|||
date: Date; |
|||
marketPrice: number; |
|||
} |
|||
|
@ -1,6 +1,6 @@ |
|||
import { DataSource } from '@prisma/client'; |
|||
|
|||
export interface UniqueAsset { |
|||
export interface AssetProfileIdentifier { |
|||
dataSource: DataSource; |
|||
symbol: string; |
|||
} |
@ -1,6 +1,6 @@ |
|||
import { UniqueAsset } from '../unique-asset.interface'; |
|||
import { AssetProfileIdentifier } from '@ghostfolio/common/interfaces'; |
|||
|
|||
export interface ResponseError { |
|||
errors?: UniqueAsset[]; |
|||
errors?: AssetProfileIdentifier[]; |
|||
hasErrors: boolean; |
|||
} |
|||
|
Loading…
Reference in new issue