-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
1,243 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import { Columns } from 'write-excel-file'; | ||
|
||
const columnOptions: Columns = [ | ||
// column 1 | ||
{}, | ||
// column 2 | ||
{ width: 12 }, | ||
// column 3 | ||
{}, | ||
// column 4 | ||
{}, | ||
// column 5 | ||
{}, | ||
// column 6 (internal status) | ||
{ width: 20 }, | ||
// column 7 (external status) | ||
{ width: 20 }, | ||
// column 8 | ||
{}, | ||
// column 9 (title) | ||
{ width: 20 }, | ||
// column 10 | ||
{}, | ||
// column 11 | ||
{}, | ||
// column 12 | ||
{}, | ||
// column 13 (Federal Funding Source) | ||
{ width: 20 }, | ||
// column 14 | ||
{}, | ||
// column 15 | ||
{}, | ||
// column 16 | ||
{}, | ||
// column 17 | ||
{}, | ||
// column 18 | ||
{}, | ||
// column 19 | ||
{}, | ||
// column 20 | ||
{}, | ||
// column 21 | ||
{}, | ||
// column 22 | ||
{}, | ||
// column 23 | ||
{}, | ||
// column 24 | ||
{}, | ||
// column 25 | ||
{}, | ||
// column 26 | ||
{}, | ||
// column 27 | ||
{}, | ||
// column 28 | ||
{}, | ||
// column 29 | ||
{}, | ||
// column 30 | ||
{}, | ||
// column 31 (bc funding) | ||
{ width: 24 }, | ||
// column 32 (applicant amount) | ||
{ width: 24 }, | ||
// column 33 (other funds requested) | ||
{ width: 24 }, | ||
// column 34 (total fnha funding) | ||
{ width: 24 }, | ||
// column 35 (total budget) | ||
{ width: 24 }, | ||
// column 36 | ||
{}, | ||
// column 37 | ||
{}, | ||
// column 38 | ||
{}, | ||
// column 39 | ||
{}, | ||
// column 40 | ||
{}, | ||
// column 41 | ||
{}, | ||
// column 42 | ||
{}, | ||
]; | ||
|
||
export default columnOptions; |
Oops, something went wrong.