Add license information.
[ustaxlib.git] / src / fed2019 / TaxReturn.ts
1 // Copyright 2020 Blue Static <https://www.bluestatic.org>
2 // This program is free software licensed under the GNU General Public License,
3 // version 3.0. The full text of the license can be found in LICENSE.txt.
4 // SPDX-License-Identifier: GPL-3.0-only
5
6 import { TaxReturn as BaseTaxReturn } from '../core';
7
8 import Form1040, { FilingStatus } from './Form1040';
9
10 export default class TaxReturn extends BaseTaxReturn {
11 get year() { return 2019; }
12
13 get includeJointPersonForms() {
14 return this.getForm(Form1040).filingStatus == FilingStatus.MarriedFilingJoint;
15 }
16 };