mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
57 changed files with 3996 additions and 2244 deletions
@ -1,14 +0,0 @@ |
|||
import { CommonModule } from '@angular/common'; |
|||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|||
import { MatCardModule } from '@angular/material/card'; |
|||
import { IonIcon } from '@ionic/angular/standalone'; |
|||
|
|||
import { BlogPageRoutingModule } from './blog-page-routing.module'; |
|||
import { BlogPageComponent } from './blog-page.component'; |
|||
|
|||
@NgModule({ |
|||
declarations: [BlogPageComponent], |
|||
imports: [BlogPageRoutingModule, CommonModule, IonIcon, MatCardModule], |
|||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|||
}) |
|||
export class BlogPageModule {} |
|||
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
@ -1,5 +0,0 @@ |
|||
import { InvestmentItem } from './investment-item.interface'; |
|||
|
|||
export interface PortfolioDividends { |
|||
dividends: InvestmentItem[]; |
|||
} |
|||
@ -1,6 +0,0 @@ |
|||
import { InvestmentItem } from './investment-item.interface'; |
|||
|
|||
export interface PortfolioInvestments { |
|||
investments: InvestmentItem[]; |
|||
streaks: { currentStreak: number; longestStreak: number }; |
|||
} |
|||
@ -1,5 +1,5 @@ |
|||
import { LineChartItem } from '@ghostfolio/common/interfaces'; |
|||
|
|||
export interface BenchmarkMarketDataDetails { |
|||
export interface BenchmarkMarketDataDetailsResponse { |
|||
marketData: LineChartItem[]; |
|||
} |
|||
@ -0,0 +1,5 @@ |
|||
import { InvestmentItem } from '../investment-item.interface'; |
|||
|
|||
export interface PortfolioDividendsResponse { |
|||
dividends: InvestmentItem[]; |
|||
} |
|||
@ -0,0 +1,6 @@ |
|||
import { InvestmentItem } from '../investment-item.interface'; |
|||
|
|||
export interface PortfolioInvestmentsResponse { |
|||
investments: InvestmentItem[]; |
|||
streaks: { currentStreak: number; longestStreak: number }; |
|||
} |
|||
|
Loading…
Reference in new issue