UNPKG

o3-dapi-ont

Version:
14 lines (11 loc) 290 B
import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface GetNodeCountArgs { network: string; } export function getNodeCount(data: GetNodeCountArgs): Promise<number> { return sendMessage({ command: Command.getNodeCount, data, }); }