UNPKG

unleash-server

Version:

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

36 lines (35 loc) 1.24 kB
import { FromSchema } from 'json-schema-to-ts'; export declare const tagWithVersionSchema: { readonly $id: "#/components/schemas/tagWithVersionSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["version", "tag"]; readonly properties: { readonly version: { readonly type: "integer"; }; readonly tag: { readonly $ref: "#/components/schemas/tagSchema"; }; }; readonly components: { readonly schemas: { readonly tagSchema: { readonly $id: "#/components/schemas/tagSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["value", "type"]; readonly properties: { readonly value: { readonly type: "string"; }; readonly type: { readonly type: "string"; }; }; readonly components: {}; }; }; }; }; export declare type TagWithVersionSchema = FromSchema<typeof tagWithVersionSchema>;