unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
32 lines (31 loc) • 968 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const addonParameterSchema: {
readonly $id: "#/components/schemas/addonParameterSchema";
readonly type: "object";
readonly required: readonly ["name", "displayName", "type", "required", "sensitive"];
readonly properties: {
readonly name: {
readonly type: "string";
};
readonly displayName: {
readonly type: "string";
};
readonly type: {
readonly type: "string";
};
readonly description: {
readonly type: "string";
};
readonly placeholder: {
readonly type: "string";
};
readonly required: {
readonly type: "boolean";
};
readonly sensitive: {
readonly type: "boolean";
};
};
readonly components: {};
};
export declare type AddonParameterSchema = FromSchema<typeof addonParameterSchema>;