mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
27 changed files with 249 additions and 195 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 {} |
|||
@ -1,5 +0,0 @@ |
|||
import { InvestmentItem } from './investment-item.interface'; |
|||
|
|||
export interface PortfolioDividends { |
|||
dividends: InvestmentItem[]; |
|||
} |
|||
@ -0,0 +1,5 @@ |
|||
import { InvestmentItem } from '../investment-item.interface'; |
|||
|
|||
export interface PortfolioDividendsResponse { |
|||
dividends: InvestmentItem[]; |
|||
} |
|||
Loading…
Reference in new issue