i2 Connect SDK
Search results for

    Show/hide table of contents

    Home > @i2analyze/i2connect > settings > getObject

    settings.getObject() function

    Warning: This API is now obsolete.

    Version 2.1 of the API introduces an updated configuration mechanism. This function will be removed in the next major version of the API.

    Gets an object from a setting, or throws an Error if the setting is missing or not an object.

    Signature:

    function getObject<TValue = unknown>(config: IGetSettingConfig, isRequired: true): TValue;
    

    Introduced: API version 2.0

    Type Parameters

    Parameter Type Description
    TValue any(default: unknown) The type of the object to retrieve.

    Parameters

    Parameter Type Description
    config IGetSettingConfig The setting whose value is to be retrieved.
    isRequired true true to throw an exception rather than return undefined if config does not specify a valid object.

    Returns:

    TValue

    The object.

    In this article
    Back to top © N. Harris Computer Corporation