Avaya Infinity Omni SDK
    Preparing search index...

    Contains the configuration information about various features provided by the Omni SDK. Note: these configurations are received from the server, and are not configurable by the client.

    interface FeatureConfigs {
        getAllFeatures(): Readonly<FeatureConfig>[];
        getFeature(featureName: string): Readonly<FeatureConfig> | undefined;
        hasFeature(featureName: string): boolean;
    }
    Index

    Methods

    • Get the configurations for all the features that are available.

      Returns Readonly<FeatureConfig>[]

      An array of all feature configurations.

    • Get the configuration for the specified feature if its available.

      Parameters

      • featureName: string

        Name of the feature to get the configuration for.

      Returns Readonly<FeatureConfig> | undefined

      The configuration for the feature if available, otherwise undefined.

    • Check if configuration for the provided feature name are available.

      Parameters

      • featureName: string

        Name of the feature to check.

      Returns boolean

      true if the feature is available, otherwise false.