UNPKG

@zendesk/retrace

Version:

define and capture Product Operation Traces along with computed metrics with an optional friendly React beacon API

13 lines (12 loc) 278 B
export type Messages = { message: string; humanReadableTimestamp: string; author: string; authorType: 'agent' | 'customer'; }[]; export interface Ticket { id: number; subject: string; messages: Messages; } export declare const mockTickets: Ticket[];