1080fed6c4869d49cb179d3cec4fd08f5b6e1bfe
[ustaxlib.git] / src%2Ffed2019%2FTaxReturn.ts
1 import { TaxReturn as BaseTaxReturn } from '../core';
2
3 import Form1040, { FilingStatus } from './Form1040';
4
5 export default class TaxReturn extends BaseTaxReturn {
6 get year() { return 2019; }
7
8 get includeJointPersonForms() {
9 return this.getForm(Form1040).filingStatus == FilingStatus.MarriedFilingJoint;
10 }
11 };