UNPKG

citeright-sdk-js

Version:
19 lines (18 loc) 397 B
/** * @swagger * definitions: * PasswordValidationModel: * type: object * properties: * isValid: * type: boolean * errors: * type: array * items: * type: string */ export declare class PasswordValidationModel { isValid: boolean; errors: string[]; constructor(isValid?: boolean, errors?: string[]); }