@botonic/plugin-hubtype-analytics
Version:
Plugin for tracking in the Hubtype backend to see the results in the Hubtype Dashbord
12 lines (11 loc) • 419 B
TypeScript
import { EventAction, EventWebviewStep, RequestData } from '../types';
import { HtEvent } from './ht-event';
export declare class HtEventWebviewStep extends HtEvent {
action: EventAction.WebviewStep;
flow_thread_id?: string;
webview_thread_id: string;
webview_name: string;
webview_step_name: string;
webview_step_n: number;
constructor(event: EventWebviewStep, requestData: RequestData);
}