UNPKG

auditjs

Version:

Audit dependencies to identify known vulnerabilities and maintenance problems

13 lines (12 loc) 493 B
import { Config } from './Config'; export declare class OssIndexServerConfig extends Config { protected username: string; protected token: string; protected cacheLocation: string; constructor(username?: string, token?: string, cacheLocation?: string); getUsername(): string | undefined; getToken(): string | undefined; getCacheLocation(): string | undefined; clearCache(): Promise<boolean>; getConfigFromFile(saveLocation?: string): OssIndexServerConfig; }