UNPKG

@voxket-ai/voxket-live

Version:

A React widget for embedding Voxket-powered audio/video/chat experiences.

19 lines (18 loc) 621 B
/** * Test script to simulate visualization_data events * This can be run in the browser console when the deep analysis component is active */ declare global { interface Window { voxketClient?: any; testVisualizationEvent?: () => void; testBarChart?: () => void; testLineChart?: () => void; testTableData?: () => void; } } declare function testVisualizationEvent(): void; declare function testBarChart(): void; declare function testLineChart(): void; declare function testTableData(): void; export { testVisualizationEvent, testBarChart, testLineChart, testTableData };