interface Error {
    code: string;
    field?: string;
    message: string;
    rules?: PasswordComplexityRule[];
}

Properties

code: string
field?: string
message: string