@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
13 lines • 320 B
TypeScript
export declare enum EProposalState {
UNDETERMINED = -1,
PENDING = 0,
ACTIVE = 1,
CANCELED = 2,
DEFEATED = 3,
SUCCEEDED = 4,
QUEUED = 5,
EXPIRED = 6,
EXECUTED = 7
}
export declare function stringToProposalState(str: string): EProposalState;
//# sourceMappingURL=EProposalState.d.ts.map