UNPKG

@zendesk/react-measure-timing-hooks

Version:

react hooks for measuring time to interactive and time to render of components

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[];