UNPKG

unleash-server

Version:

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

19 lines (18 loc) 676 B
import { FromSchema } from 'json-schema-to-ts'; export declare const publicSignupTokenUpdateSchema: { readonly $id: "#/components/schemas/publicSignupTokenUpdateSchema"; readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly expiresAt: { readonly type: "string"; readonly description: "The token's expiration date."; readonly format: "date-time"; }; readonly enabled: { readonly type: "boolean"; }; }; readonly components: {}; }; export declare type PublicSignupTokenUpdateSchema = FromSchema<typeof publicSignupTokenUpdateSchema>;