@hashgraph/solo
    Preparing search index...

    ConfigManager cache command flag values so that user doesn't need to enter the same values repeatedly.

    For example, 'namespace' is usually remains the same across commands once it is entered, and therefore user doesn't need to enter it repeatedly. However, user should still be able to specify the flag explicitly for any command.

    Index

    Constructors

    Properties

    _configMaps: Map<string, any> = ...
    config: Record<string, any>

    Methods

    • Apply the command flags precedence

      It uses the below precedence for command flag values:

      1. User input of the command flag
      2. Default value of the command flag if the command is not 'init'.

      Parameters

      Returns Argv<any>

    • Dynamically builds a class with properties from the provided list of flags and extra properties, will keep track of which properties are used. Call getUnusedConfigs() to get an array of unused properties.

      Parameters

      • configName: string
      • flags: CommandFlag[]
      • extraProperties: string[] = []

      Returns object

    • Get the list of unused configurations that were not accessed

      Parameters

      • configName: string

      Returns string[]

      an array of unused configurations