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