unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
25 lines (24 loc) • 739 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const feedbackSchema: {
readonly $id: "#/components/schemas/feedbackSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly properties: {
readonly userId: {
readonly type: "number";
};
readonly feedbackId: {
readonly type: "string";
};
readonly neverShow: {
readonly type: "boolean";
};
readonly given: {
readonly type: "string";
readonly format: "date-time";
readonly nullable: true;
};
};
readonly components: {};
};
export declare type FeedbackSchema = FromSchema<typeof feedbackSchema>;