unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
23 lines (22 loc) • 683 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const createFeatureSchema: {
readonly $id: "#/components/schemas/createFeatureSchema";
readonly type: "object";
readonly required: readonly ["name"];
readonly properties: {
readonly name: {
readonly type: "string";
};
readonly type: {
readonly type: "string";
};
readonly description: {
readonly type: "string";
};
readonly impressionData: {
readonly type: "boolean";
};
};
readonly components: {};
};
export declare type CreateFeatureSchema = FromSchema<typeof createFeatureSchema>;