Type Alias: ProtocolConfigFeatureFlag
type ProtocolConfigFeatureFlag = {
key: string;
value: boolean;
};
Feature flags are a form of boolean configuration that are usually used to gate features while they are in development. Once a lag has been enabled, it is rare for it to be disabled.
Properties
key
key: string;
value
value: boolean;