diff --git a/src/types/VoteType.ts b/src/types/VoteType.ts index 4445743..53668a6 100644 --- a/src/types/VoteType.ts +++ b/src/types/VoteType.ts @@ -3,3 +3,9 @@ export enum VoteType { ABSTAIN = 2, NO = 3, } + +export enum CommitteeVoteType { + YES = 1, + ABSTAIN = 3, + NO = 2, +}