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