UNPKG

auditjs

Version:

Audit dependencies to identify known vulnerabilities and maintenance problems

12 lines (11 loc) 372 B
import { Config } from './Config'; export declare class IqServerConfig extends Config { protected username: string; protected token: string; private host; constructor(username?: string, token?: string, host?: string); getUsername(): string; getToken(): string; getHost(): string; getConfigFromFile(saveLocation?: string): IqServerConfig; }