xrefcli
Version:
CLI command for the searching through OpenEdge XREF
16 lines (15 loc) • 439 B
TypeScript
import { Config } from './../config';
import { Executable } from './../executable';
export declare class ShowCommand implements Executable {
config: Config;
source: string;
tables: boolean;
jsonOutput: boolean;
xrefOutput: boolean;
openFile: boolean;
constructor(config: Config);
execute(params: any): Promise<void>;
validate(params: any): boolean;
private openEditor;
private generateOutput;
}