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