diff options
author | benal01 <bja4245@rit.edu> | 2025-03-17 18:42:10 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-17 18:42:10 -0400 |
commit | 7057f8ad5e0aaf6527477a68c229db659cd674ff (patch) | |
tree | 065a55a1b6642a6fa3b948f826baa3151c4370c6 | |
parent | b0f0589afdb319de8a01cb53f8a89c7265e634ae (diff) | |
download | JellySolutions-7057f8ad5e0aaf6527477a68c229db659cd674ff.tar.gz JellySolutions-7057f8ad5e0aaf6527477a68c229db659cd674ff.tar.bz2 JellySolutions-7057f8ad5e0aaf6527477a68c229db659cd674ff.zip |
exporting usertype enum
-rw-r--r-- | ufund-ui/src/app/models/User.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/models/User.ts b/ufund-ui/src/app/models/User.ts index 141f8aa..5ed3a3f 100644 --- a/ufund-ui/src/app/models/User.ts +++ b/ufund-ui/src/app/models/User.ts @@ -1,6 +1,6 @@ import {Need} from './Need'; -enum userType { +export enum userType { HELPER, MANAGER } |