UNPKG

@embrace-io/web-sdk

Version:
12 lines 1.02 kB
//#region src/instrumentations/first-interaction/FirstInteractionInstrumentation/constants.d.ts declare const FIRST_INTERACTION_EVENT_NAME = "first-interaction"; declare const ATTR_FIRST_INTERACTION_INTERACTION_TYPE = "first_interaction.interaction_type"; declare const ATTR_FIRST_INTERACTION_ELEMENT_TYPE = "first_interaction.element_type"; declare const ATTR_FIRST_INTERACTION_ELEMENT_SELECTOR = "first_interaction.element_selector"; declare const ATTR_FIRST_INTERACTION_X = "first_interaction.x"; declare const ATTR_FIRST_INTERACTION_Y = "first_interaction.y"; declare const ATTR_FIRST_INTERACTION_TIME = "first_interaction.time"; type FirstInteractionType = 'click' | 'tap' | 'keypress' | 'scroll'; //#endregion export { ATTR_FIRST_INTERACTION_ELEMENT_SELECTOR, ATTR_FIRST_INTERACTION_ELEMENT_TYPE, ATTR_FIRST_INTERACTION_INTERACTION_TYPE, ATTR_FIRST_INTERACTION_TIME, ATTR_FIRST_INTERACTION_X, ATTR_FIRST_INTERACTION_Y, FIRST_INTERACTION_EVENT_NAME, FirstInteractionType }; //# sourceMappingURL=constants.d.cts.map