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