mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 22:04:06 -06:00
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
export declare enum ProposalState {
|
|
Pending = 0,
|
|
Active = 1,
|
|
Canceled = 2,
|
|
Defeated = 3,
|
|
Succeeded = 4,
|
|
Queued = 5,
|
|
Expired = 6,
|
|
Executed = 7
|
|
}
|