unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
18 lines (17 loc) • 613 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const projectEnvironmentSchema: {
readonly $id: "#/components/schemas/projectEnvironmentSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["environment"];
readonly properties: {
readonly environment: {
readonly type: "string";
};
readonly changeRequestsEnabled: {
readonly type: "boolean";
};
};
readonly components: {};
};
export declare type ProjectEnvironmentSchema = FromSchema<typeof projectEnvironmentSchema>;