Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.

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