Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 92x 273x | export interface IExperimentalOptions {
metricsV2?: IExperimentalToggle;
clientFeatureMemoize?: IExperimentalToggle;
segments?: IExperimentalSegments;
}
export interface IExperimentalToggle {
enabled: boolean;
}
export interface IExperimentalSegments {
enableSegmentsClientApi: boolean;
enableSegmentsAdminApi: boolean;
inlineSegmentConstraints: boolean;
}
export const experimentalSegmentsConfig = (): IExperimentalSegments => {
return {
enableSegmentsAdminApi: true,
enableSegmentsClientApi: true,
inlineSegmentConstraints: true,
};
};
|