UNPKG

unleash-server

Version:

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

35 lines (34 loc) 1.09 kB
import { FromSchema } from 'json-schema-to-ts'; export declare const environmentProjectSchema: { readonly $id: "#/components/schemas/environmentProjectSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["name", "type", "enabled"]; readonly properties: { readonly name: { readonly type: "string"; }; readonly type: { readonly type: "string"; }; readonly enabled: { readonly type: "boolean"; }; readonly protected: { readonly type: "boolean"; }; readonly sortOrder: { readonly type: "number"; }; readonly projectApiTokenCount: { readonly type: "number"; readonly nullable: true; }; readonly projectEnabledToggleCount: { readonly type: "number"; readonly nullable: true; }; }; readonly components: {}; }; export declare type EnvironmentProjectSchema = FromSchema<typeof environmentProjectSchema>;