vodafone-station-cli
Version:
Access your Vodafone Station from the comfort of the command line.
12 lines (11 loc) • 478 B
TypeScript
import type { ArrisDocsisStatus } from '../arris-modem';
export interface CryptoVars {
iv: string;
nonce: string;
salt: string;
sessionId: string;
}
export declare function extractCryptoVars(html: string): CryptoVars;
export declare function extractFirmwareVersion(html: string): string | undefined;
export declare function extractDocsisStatus(html: string, date?: Date): ArrisDocsisStatus;
export declare function extractCredentialString(html: string): string;