node-tracker.formelement
Home > @snowplow/node-tracker > FormElement
FormElement type
A representation of an element within a form
Signature:type FormElement = {
    name: string;
    value: string | null;
    nodeName: string;
    type?: string | null;
};