UNPKG

myria-core-sdk

Version:

Latest version SDK

19 lines (18 loc) 496 B
import { EnvTypes } from "../typesBundle"; import { Network } from '../types/CommonTypes'; /** * @typedef {Object} INativeMyriaClient * @property {number} networkId Network * @property {EnvTypes} EnvTypes Target environment */ export interface INativeMyriaClient { networkId: number; env: EnvTypes; } export declare class NativeMyriaClient { networkId: Network; env: EnvTypes; constructor(client: INativeMyriaClient); getNetworkId(): number; getEnv(): EnvTypes; }