unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
39 lines (38 loc) • 1.17 kB
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const environmentSchema: {
readonly $id: "#/components/schemas/environmentSchema";
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 projectCount: {
readonly type: "number";
readonly nullable: true;
};
readonly apiTokenCount: {
readonly type: "number";
readonly nullable: true;
};
readonly enabledToggleCount: {
readonly type: "number";
readonly nullable: true;
};
};
readonly components: {};
};
export declare type EnvironmentSchema = FromSchema<typeof environmentSchema>;