Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 439 Bytes

File metadata and controls

18 lines (13 loc) · 439 Bytes

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;
};