unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
24 lines (23 loc) • 834 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const setUiConfigSchema: {
readonly $id: "#/components/schemas/setUiConfigSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly properties: {
readonly frontendSettings: {
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["frontendApiOrigins"];
readonly properties: {
readonly frontendApiOrigins: {
readonly type: "array";
readonly items: {
readonly type: "string";
};
};
};
};
};
readonly components: {};
};
export declare type SetUiConfigSchema = FromSchema<typeof setUiConfigSchema>;