* Extend date range support by specific years * Support date range in benchmark endpoint * Support date range in activities endpoint * Update changelog
19 lines
426 B
TypeScript
19 lines
426 B
TypeScript
import { UniqueAsset } from '@ghostfolio/common/interfaces';
|
|
import { DateRange } from '@ghostfolio/common/types';
|
|
|
|
export interface IDateRangeOption {
|
|
label: string;
|
|
value: DateRange;
|
|
}
|
|
|
|
export interface ISearchResultItem extends UniqueAsset {
|
|
assetSubClassString: string;
|
|
currency: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface ISearchResults {
|
|
assetProfiles: ISearchResultItem[];
|
|
holdings: ISearchResultItem[];
|
|
}
|