UNPKG

routeros-api

Version:

Mikrotik Routerboard RouterOS API for NodeJS

16 lines (15 loc) 326 B
/// <reference types="node" /> import { TlsOptions } from 'tls'; /** * Crendential options needed for instantiating * a RouterOSAPI object */ export interface IRosOptions { host: string; user?: string; password?: string; port?: number; timeout?: number; tls?: TlsOptions; keepalive?: boolean; }