A map of feature flag keys to objects holding changes in their values.

interface LDFlagChangeset {
    [key: string]: {
        current: LDFlagValue;
        previous: LDFlagValue;
    };
}

Indexable

[key: string]: {
    current: LDFlagValue;
    previous: LDFlagValue;
}