UNPKG

@pokt-network/pocket-js

Version:

Pocket-js core package with the main functionalities to interact with the Pocket Network.

24 lines (23 loc) 505 B
/** * * JailedStatus enum with the possible Jailed status values */ export declare enum JailedStatus { NA = "", Jailed = 1, Unjailed = 2 } /** * * JailedStatus enum utility */ export declare namespace JailedStatus { /** * * Returns the JailedStatus by passing an string * @param {string} status - Staking status string. * @returns {JailedStatus} - JailedStatus object. * @memberof JailedStatus */ function getStatus(status: number): JailedStatus; }