Static methods to interact with the settings store.

Constructors

Methods

Constructors

Methods

  • Get a value form the settings store by its name.

    Parameters

    • name: string

      The name of the value to get.

    Returns any

    The value of the setting.

  • Set a value in the settings store by its name.

    Parameters

    • name: string

      The name of the value to set.

    • value: any

      The value to set.

    Returns Promise<void>