UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.

24 lines (23 loc) 753 B
import { FromSchema } from 'json-schema-to-ts'; export declare const createInvitedUserSchema: { readonly $id: "#/components/schemas/createInvitedUserSchema"; readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["email", "name", "password"]; readonly properties: { readonly username: { readonly type: "string"; }; readonly email: { readonly type: "string"; }; readonly name: { readonly type: "string"; }; readonly password: { readonly type: "string"; }; }; readonly components: {}; }; export declare type CreateInvitedUserSchema = FromSchema<typeof createInvitedUserSchema>;