interface BaseScriptInformation {
    description: string;
    options: OptionDefinition[];
    target: string;
    toolName: string;
    usageExample: string;
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of BaseScriptInformation

Properties

description: string

description of the tool for the user

options: OptionDefinition[]

command line options that are available

target: string

internal module name to fork/execute, make sure to use the correct path to it with the help of __dirname

toolName: string

name of the tool to present to the user

usageExample: string

example usage