unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
25 lines (24 loc) • 786 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const featureTypeSchema: {
readonly $id: "#/components/schemas/featureTypeSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["id", "name", "description", "lifetimeDays"];
readonly properties: {
readonly id: {
readonly type: "string";
};
readonly name: {
readonly type: "string";
};
readonly description: {
readonly type: "string";
};
readonly lifetimeDays: {
readonly type: "number";
readonly nullable: true;
};
};
readonly components: {};
};
export declare type FeatureTypeSchema = FromSchema<typeof featureTypeSchema>;