Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 689 Bytes

File metadata and controls

25 lines (20 loc) · 689 Bytes

Home > @snowplow/browser-tracker > ParsedIdCookie

ParsedIdCookie type

The format of state elements stored in the id cookie.

Signature:

type ParsedIdCookie = [
    cookieDisabled: string,
    domainUserId: string,
    cookieCreateTs: number,
    visitCount: number,
    nowTs: number,
    lastVisitTs: number | undefined,
    sessionId: string,
    previousSessionId: string,
    firstEventId: string,
    firstEventTs: number | undefined,
    eventIndex: number
];