UNPKG

unleash-server

Version:

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

39 lines (38 loc) 1.11 kB
import { FromSchema } from 'json-schema-to-ts'; export declare const applicationSchema: { readonly $id: "#/components/schemas/applicationSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["appName"]; readonly properties: { readonly appName: { readonly type: "string"; }; readonly sdkVersion: { readonly type: "string"; }; readonly strategies: { readonly type: "array"; readonly items: { readonly type: "string"; }; }; readonly description: { readonly type: "string"; }; readonly url: { readonly type: "string"; }; readonly color: { readonly type: "string"; }; readonly icon: { readonly type: "string"; }; readonly announced: { readonly type: "boolean"; }; }; readonly components: {}; }; export declare type ApplicationSchema = FromSchema<typeof applicationSchema>;