mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
3 months ago
committed by
GitHub
17 changed files with 75 additions and 56 deletions
@ -1,7 +1,7 @@ |
|||
import { DataProviderInfo } from '@ghostfolio/common/interfaces'; |
|||
|
|||
import { AssetClass, AssetSubClass, DataSource } from '@prisma/client'; |
|||
|
|||
import { DataProviderInfo } from './data-provider-info.interface'; |
|||
|
|||
export interface LookupItem { |
|||
assetClass: AssetClass; |
|||
assetSubClass: AssetSubClass; |
@ -0,0 +1,5 @@ |
|||
import { LookupItem } from '../lookup-item.interface'; |
|||
|
|||
export interface LookupResponse { |
|||
items: LookupItem[]; |
|||
} |
Loading…
Reference in new issue