UNPKG

growthbook

Version:

The GrowthBook command-line interface (CLI) for working with the GrowthBook A/B testing, feature flagging, and experimentation platform

10 lines (9 loc) 287 B
export type GrowthBookApiError = { message: string; }; /** * Parses the Axios error object based on the GrowthBook public API error response * @param error {AxiosError} * @return error message {string} */ export declare const errorStringFromResponse: (error: unknown) => string;