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