interface PasswordCollector {
    category: "SingleValueCollector";
    error: null | string;
    id: string;
    input: { key: string; type: string; value: string | number | boolean };
    name: string;
    output: { key: string; label: string; type: string; verify: boolean };
    type: "PasswordCollector";
}

Properties

category: "SingleValueCollector"
error: null | string
id: string
input: { key: string; type: string; value: string | number | boolean }
name: string
output: { key: string; label: string; type: string; verify: boolean }
type: "PasswordCollector"