growthbook
Version:
The GrowthBook command-line interface (CLI) for working with the GrowthBook A/B testing, feature flagging, and experimentation platform
31 lines (30 loc) • 1.53 kB
TypeScript
export declare const Icons: {
checkmark: string;
xSymbol: string;
};
export declare const TRUTHY_VALUES: (string | number)[];
export declare const FALSY_VALUES: (string | number)[];
/**
* Defaults to false if the value cannot be parsed as true
* @param value {string | number}
* @return boolean value or null
*/
export declare const parseBooleanFromString: (value: string | number) => boolean | null;
/**
* Base GrowthBook CLI flags for adding support for configurations.
*/
export declare const baseGrowthBookCliFlags: {
apiBaseUrl: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
profile: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
};
/**
* Flags for supporting reading from file and outputting to file
*/
export declare const fileInputOutputCliFlags: {
filePath: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
output: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
};
export declare const paginationCliFlags: {
limit: import("@oclif/core/lib/interfaces").OptionFlag<number, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
offset: import("@oclif/core/lib/interfaces").OptionFlag<number, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
};