import { Option } from "./_commons"; /** The event that fires during a change in page lifecycle */ export interface PageVisitEventPage { /** * The type of lifecycle event * Renamed to event_type in Metroplex */ type: string; /** The event data, if any */ data?: Option; }