Contentful Personalization & Analytics
    Preparing search index...
    interface EntryInteractionApi {
        clearElement: (
            interaction: keyof EntryInteractionTrackers,
            element: Element,
        ) => void;
        disable: (interaction: keyof EntryInteractionTrackers) => void;
        disableElement: (
            interaction: keyof EntryInteractionTrackers,
            element: Element,
        ) => void;
        enable: <TInteraction extends keyof EntryInteractionTrackers>(
            interaction: TInteraction,
            options?: EntryInteractionStartOptions<TInteraction>,
        ) => void;
        enableElement: <TInteraction extends keyof EntryInteractionTrackers>(
            interaction: TInteraction,
            element: Element,
            options?: EntryInteractionElementOptions<TInteraction>,
        ) => void;
    }
    Index

    Properties

    clearElement: (
        interaction: keyof EntryInteractionTrackers,
        element: Element,
    ) => void
    disable: (interaction: keyof EntryInteractionTrackers) => void
    disableElement: (
        interaction: keyof EntryInteractionTrackers,
        element: Element,
    ) => void
    enable: <TInteraction extends keyof EntryInteractionTrackers>(
        interaction: TInteraction,
        options?: EntryInteractionStartOptions<TInteraction>,
    ) => void
    enableElement: <TInteraction extends keyof EntryInteractionTrackers>(
        interaction: TInteraction,
        element: Element,
        options?: EntryInteractionElementOptions<TInteraction>,
    ) => void