Skip to content

Commit

Permalink
add constants to term type
Browse files Browse the repository at this point in the history
  • Loading branch information
szeckirjr committed Mar 4, 2024
1 parent 2b49231 commit 7c28ae1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion functions/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export type Term =
| '202301'
| '202305'
| '202309'
| '202401';
| '202401'
| '202405';

// make const array of terms from above
export const terms: Term[] = [
Expand All @@ -29,6 +30,7 @@ export const terms: Term[] = [
'202305',
'202309',
'202401',
'202405',
];

// add some code?
Expand Down

0 comments on commit 7c28ae1

Please sign in to comment.