interface MasterScriptInformation {
    description: string;
    options: OptionDefinition[];
    target: string;
    toolName: string;
    type: "master script";
    usageExample: string;
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of MasterScriptInformation

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

type: "master script"
usageExample: string

example usage