citeright-sdk-js
Version:
An SDK to connect to the CiteRight API.
19 lines (18 loc) • 397 B
TypeScript
/**
* @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[]);
}