UNPKG

unleash-server

Version:

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

15 lines (14 loc) 440 B
import { FromSchema } from 'json-schema-to-ts'; export declare const idSchema: { readonly $id: "#/components/schemas/idSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["id"]; readonly properties: { readonly id: { readonly type: "string"; }; }; readonly components: {}; }; export declare type IdSchema = FromSchema<typeof idSchema>;