UNPKG

@kubiklabs/wasmkit

Version:

Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.

14 lines (13 loc) 439 B
/** * This module defines different WasmKit execution modes and autodetects them. * * IMPORTANT: This will have to be revisited once Yarn PnP and npm's tink get * widely adopted. */ export declare enum ExecutionMode { EXECUTION_MODE_TS_NODE_TESTS = 0, EXECUTION_MODE_LINKED = 1, EXECUTION_MODE_GLOBAL_INSTALLATION = 2, EXECUTION_MODE_LOCAL_INSTALLATION = 3 } export declare function getExecutionMode(): ExecutionMode;