UNPKG

unleash-server

Version:

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

20 lines (19 loc) 584 B
import { FromSchema } from 'json-schema-to-ts'; export declare const updateUserSchema: { readonly $id: "#/components/schemas/updateUserSchema"; readonly type: "object"; readonly additionalProperties: true; readonly properties: { readonly email: { readonly type: "string"; }; readonly name: { readonly type: "string"; }; readonly rootRole: { readonly type: "number"; }; }; readonly components: {}; }; export declare type UpdateUserSchema = FromSchema<typeof updateUserSchema>;