Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | export type WindowActiveState = 'focused' | 'blurred'; export type DelegationType = 'indefinite' | 'limited'; export enum ApiResource { Mempool = 'mempool', Nonce = 'nonce', DelegationStatus = 'delegation-status', FeeRate = 'fee-rate', } declare global { const CONFIG: { NODE_ENV: 'development' | 'production' | 'test'; DEBUG_PROD: string; STX_NETWORK: 'testnet' | 'mainnet'; PLAIN_HMR?: string; START_HOT: boolean; PORT?: number; PULL_REQUEST?: string; BRANCH_NAME?: string; SHA?: string; }; } |