xrefcli
Version:
CLI command for the searching through OpenEdge XREF
16 lines (15 loc) • 443 B
TypeScript
import { Config } from './../config';
import { Executable } from './../executable';
export declare class ListCommand implements Executable {
private config;
private xreffiles;
private searcher;
private outputJson;
private dbPrefix;
private outputType;
constructor(config: Config);
execute(params: any): Promise<void>;
validate(params: any): boolean;
private outputDatabases;
private outputTables;
}