Skip to content

Commit

Permalink
Fixed doclets in GoalAnalysisOptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
bre1470 committed Sep 30, 2024
1 parent af4c174 commit f78650b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/GoalAnalysis/GoalAnalysisOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ export interface GoalAnalysisOptions extends MorningstarOptions {

/**
* Amount investor invests yearly.
*
* **Note:** Required when `includeDetailedInvestmentGrowthGraph`option is
* set to `true`.
*/
annualInvestment?: number;

Expand All @@ -116,6 +119,9 @@ export interface GoalAnalysisOptions extends MorningstarOptions {

/**
* Investor’s current savings amount.
*
* **Note:** Required when `includeDetailedInvestmentGrowthGraph`option is
* set to `true`.
*/
currentSavings?: number;

Expand All @@ -128,11 +134,17 @@ export interface GoalAnalysisOptions extends MorningstarOptions {

/**
* Investor’s target goal amount.
*
* **Note:** Required when `includeDetailedInvestmentGrowthGraph`option is
* set to `true`.
*/
target?: number;

/**
* Time horizon in years.
*
* **Note:** Required when `includeDetailedInvestmentGrowthGraph`option is
* set to `true`.
*/
timeHorizon?: number;

Expand Down

0 comments on commit f78650b

Please sign in to comment.