interface PasswordComplexityRule {
    args?: {
        count: number;
        example?: string;
        total?: number;
    };
    code: string;
    items?: PasswordComplexityRule[];
    label: string;
    status: "valid" | "error";
}

Properties

args?: {
    count: number;
    example?: string;
    total?: number;
}
code: string
label: string
status: "valid" | "error"