UNPKG

unleash-server

Version:

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

40 lines (39 loc) 1.28 kB
import { FromSchema } from 'json-schema-to-ts'; export declare const upsertStrategySchema: { readonly $id: "#/components/schemas/upsertStrategySchema"; readonly type: "object"; readonly required: readonly ["name"]; readonly properties: { readonly name: { readonly type: "string"; }; readonly description: { readonly type: "string"; }; readonly editable: { readonly type: "boolean"; }; readonly parameters: { readonly type: "array"; readonly items: { readonly type: "object"; readonly properties: { readonly name: { readonly type: "string"; }; readonly type: { readonly type: "string"; }; readonly description: { readonly type: "string"; }; readonly required: { readonly type: "boolean"; }; }; }; }; }; readonly components: {}; }; export declare type UpsertStrategySchema = FromSchema<typeof upsertStrategySchema>;