growthbook
Version:
The GrowthBook command-line interface (CLI) for working with the GrowthBook A/B testing, feature flagging, and experimentation platform
8 lines (7 loc) • 325 B
TypeScript
import { SimplifiedFeature } from './feature';
/**
* Given the provided features list, will compile it into a TypeScript template.
* @param features List of key/value pairs
* @return {string} TypeScript template
*/
export declare const getCompiledTypeScriptTemplateForFeatures: (features: SimplifiedFeature[]) => string;