@zendesk/retrace
Version:
define and capture Product Operation Traces along with computed metrics with an optional friendly React beacon API
14 lines (13 loc) • 381 B
TypeScript
export interface Customer {
id: string;
name: string;
email: string;
company: string;
avatar: string;
joined: string;
notes: string;
ticketCount: number;
status: 'active' | 'inactive' | 'vip';
}
export declare const mockCustomers: Record<string, Customer>;
export declare const getCustomerByTicketId: (ticketId: number) => Customer | undefined;