@twilio/flex-ui
Version:
Twilio Flex UI
8 lines (7 loc) • 495 B
TypeScript
import AbstractTelemetryEventsDelegate from "./AbstractTelemetryEventsDelegate";
import { FormattedUIInteractionEvent, UIInteractionEvent } from "./UIInteractionEventsDelegate.definitions";
export declare class UIInteractionEventsDelegate extends AbstractTelemetryEventsDelegate<FormattedUIInteractionEvent> {
getSchemaName(): string;
getEventName(): string;
format({ name, status, category, details, duration, client_timestamp }: UIInteractionEvent): FormattedUIInteractionEvent;
}