UNPKG

o3-dapi-ont

Version:
14 lines (11 loc) 291 B
import { sendMessage } from '../messaging'; import { Command } from '../constants'; interface GetNetworksOutput { networks: string[]; defaultNetwork: string; } export function getNetworks(): Promise<GetNetworksOutput> { return sendMessage({ command: Command.getNetworks, }); }