UNPKG

vodafone-station-cli

Version:

Access your Vodafone Station from the comfort of the command line.

15 lines (14 loc) 615 B
import type { DocsisStatus, HumanizedDocsis31ChannelStatus, HumanizedDocsisChannelStatus } from './modem'; export declare class TablePrinter { private docsisStatus; head: string[]; constructor(docsisStatus: DocsisStatus); get lineSeparator(): string; get spacedHead(): string[]; docsis31StatusToRow(rowObjects: HumanizedDocsis31ChannelStatus[]): string; docsisStatusToRow(rowObjects: HumanizedDocsisChannelStatus[]): string; lineText(...words: Array<number | string>): string; print(): string; tableHeader(): string; tableRow(...words: Array<number | string>): string; }