File

lib/common/config/config.types.ts

Description

Represents a configuration item. Each configuration item consists of a key and a value, both of which are strings.

Index

Properties

Properties

key
key: string
Type : string

The key of the configuration item. This is the identifier for the configuration setting.

value
value: string
Type : string

The value of the configuration item. This is the value associated with the configuration key.

export interface ConfigItem {
  /**
   * The key of the configuration item.
   * This is the identifier for the configuration setting.
   */
  key: string;

  /**
   * The value of the configuration item.
   * This is the value associated with the configuration key.
   */
  value: string;
}

results matching ""

    No results matching ""