UNPKG

unleash-server

Version:

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

27 lines (26 loc) 802 B
import { FromSchema } from 'json-schema-to-ts'; export declare const featureTagSchema: { readonly $id: "#/components/schemas/featureTagSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["featureName", "tagValue"]; readonly properties: { readonly featureName: { readonly type: "string"; }; readonly tagType: { readonly type: "string"; }; readonly tagValue: { readonly type: "string"; }; readonly type: { readonly type: "string"; }; readonly value: { readonly type: "string"; }; }; readonly components: {}; }; export declare type FeatureTagSchema = FromSchema<typeof featureTagSchema>;