Interface IFeatureToggle

Represents the properties of the feature toggle with value for current tenant and the strategy that provided this value.

interface IFeatureToggle {
    active: boolean;
    key: string;
    phase:
        | "IN_DEVELOPMENT"
        | "PRIVATE_PREVIEW"
        | "PUBLIC_PREVIEW"
        | "GENERALLY_AVAILABLE";
    strategy: "DEFAULT" | "TENANT";
}

Properties

active: boolean

Indicates whether the given feature is active.

key: string

Feature key.

phase:
    | "IN_DEVELOPMENT"
    | "PRIVATE_PREVIEW"
    | "PUBLIC_PREVIEW"
    | "GENERALLY_AVAILABLE"

Specifies the current phase of a given feature.

strategy: "DEFAULT" | "TENANT"

Indicates whether the feature toggle applies to the platform or the tenant.