UNPKG

hdckit

Version:

A pure Node.js client for the OpenHarmony Device Connector

11 lines (10 loc) 205 B
import Client from './hdc/Client'; interface Options { host?: string; port?: number; bin?: string; } export default class Hdc { static createClient(options?: Options): Client; } export {};