UNPKG

unleash-server

Version:

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

18 lines (17 loc) 558 B
import { FromSchema } from 'json-schema-to-ts'; export declare const legalValueSchema: { readonly $id: "#/components/schemas/legalValueSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["value"]; readonly properties: { readonly value: { readonly type: "string"; }; readonly description: { readonly type: "string"; }; }; readonly components: {}; }; export declare type LegalValueSchema = FromSchema<typeof legalValueSchema>;