@duckduckgo/content-scope-scripts
    Preparing search index...

    The profile data a fillForm action draws from, keyed by the field names a FormElement type references (e.g. firstName, lastName, city, state, email). The exact shape is caller-defined, so extra properties are allowed.

    interface ExtractedProfile {
        age?: string | number;
        birthYear?: string | number;
        city?: string;
        email?: string;
        firstName?: string;
        lastName?: string;
        middleName?: string;
        phone?: string;
        profileUrl?: string;
        state?: string;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    age?: string | number
    birthYear?: string | number
    city?: string
    email?: string
    firstName?: string
    lastName?: string
    middleName?: string
    phone?: string
    profileUrl?: string
    state?: string