unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
35 lines (34 loc) • 1.06 kB
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const clientFeaturesQuerySchema: {
readonly $id: "#/components/schemas/clientFeaturesQuerySchema";
readonly type: "object";
readonly additionalProperties: false;
readonly properties: {
readonly tag: {
readonly type: "array";
readonly items: {
readonly type: "array";
readonly items: {
readonly type: "string";
};
};
};
readonly project: {
readonly type: "array";
readonly items: {
readonly type: "string";
};
};
readonly namePrefix: {
readonly type: "string";
};
readonly environment: {
readonly type: "string";
};
readonly inlineSegmentConstraints: {
readonly type: "boolean";
};
};
readonly components: {};
};
export declare type ClientFeaturesQuerySchema = FromSchema<typeof clientFeaturesQuerySchema>;