unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
18 lines • 842 B
TypeScript
import type { FromSchema } from 'json-schema-to-ts';
export declare const validatePasswordSchema: {
readonly $id: "#/components/schemas/validatePasswordSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["password"];
readonly description: "Used to validate passwords obeying [Unleash password guidelines](https://docs.getunleash.io/using-unleash/deploy/configuring-unleash#securing-unleash)";
readonly properties: {
readonly password: {
readonly description: "The password to validate";
readonly type: "string";
readonly example: "hunter2";
};
};
readonly components: {};
};
export type ValidatePasswordSchema = FromSchema<typeof validatePasswordSchema>;
//# sourceMappingURL=validate-password-schema.d.ts.map