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
6 import { Person } from 'ustaxlib/core';
7 import { Form1040, FilingStatus, Schedule2, TaxReturn, W2 } from 'ustaxlib/fed2019';
9 const tr = new TaxReturn();
10 tr.addForm(new Form1040({ filingStatus: FilingStatus.Single }));
13 employee: Person.self('Robert'),
17 tr.addForm(new Schedule2);