UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.

17 lines (16 loc) 526 B
import { FromSchema } from 'json-schema-to-ts'; export declare const cloneFeatureSchema: { readonly $id: "#/components/schemas/cloneFeatureSchema"; readonly type: "object"; readonly required: readonly ["name"]; readonly properties: { readonly name: { readonly type: "string"; }; readonly replaceGroupId: { readonly type: "boolean"; }; }; readonly components: {}; }; export declare type CloneFeatureSchema = FromSchema<typeof cloneFeatureSchema>;