import { Ecanna } from "ecanna/dist" import { HealthAPI } from "ecanna/dist/apis/health" import { HealthResponse } from "ecanna/dist/apis/health/interfaces" const ip: string = "localhost" const port: number = 9650 const protocol: string = "http" const networkID: number = 1337 const ecanna: Ecanna = new Ecanna(ip, port, protocol, networkID) const health: HealthAPI = ecanna.Health() const main = async (): Promise => { const healthResponse: HealthResponse = await health.health() console.log(healthResponse) } main()