unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
16 lines (15 loc) • 537 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const healthCheckSchema: {
readonly $id: "#/components/schemas/healthCheckSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["health"];
readonly properties: {
readonly health: {
readonly type: "string";
readonly enum: readonly ["GOOD", "BAD"];
};
};
readonly components: {};
};
export declare type HealthCheckSchema = FromSchema<typeof healthCheckSchema>;