11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import { IDataGatheringItem } from '@ghostfolio/api/services/interfaces/interfaces';
|
|
|
|
import { DateQuery } from './date-query.interface';
|
|
|
|
export interface GetValuesParams {
|
|
currencies: { [symbol: string]: string };
|
|
dataGatheringItems: IDataGatheringItem[];
|
|
dateQuery: DateQuery;
|
|
userCurrency: string;
|
|
}
|