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