From 3186fd6d2caec6e44c84488b55e58ba2936a74f0 Mon Sep 17 00:00:00 2001 From: samcode206 Date: Mon, 11 Nov 2024 09:22:33 -0800 Subject: [PATCH] add CommitteeVoteType --- src/types/VoteType.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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, +}