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