as-event-tracker
Version:
Logs events in the browser based on client interactions.
18 lines (17 loc) • 453 B
TypeScript
export default class ChannelMeta {
persistent_id: string;
session_id: string;
request_id: string;
client_ref: string;
timezone_offset: string;
device_type: string;
device_platform: string;
screen_width: number;
screen_height: number;
browser_width: number;
browser_height: number;
culture_code: string;
os: string;
browser: string;
constructor(init?: Partial<ChannelMeta>);
}