interface PasswordVerifyCollector {
    category: "SingleValueCollector";
    error: null | string;
    id: string;
    input: { key: string; type: string; value: string | number | boolean };
    name: string;
    output: {
        key: string;
        label: string;
        passwordPolicy?: PasswordPolicy;
        type: string;
    };
    type: "PasswordVerifyCollector";
}

Properties

category: "SingleValueCollector"
error: null | string
id: string
input: { key: string; type: string; value: string | number | boolean }
name: string
output: {
    key: string;
    label: string;
    passwordPolicy?: PasswordPolicy;
    type: string;
}
type: "PasswordVerifyCollector"