UNPKG

react-native-analytics-debugger

Version:
33 lines (25 loc) 690 B
import {Component} from 'react'; declare module 'react-native-analytics-debugger' { class AvoDebugger extends Component { static schemaId: string; static showDebugger({mode}: {mode: 'bar' | 'bubble'}): void; static hideDebugger(): void; static isEnabled(): boolean; static postEvent( id: string, timestamp: number, name: string, messages: any[], eventProperties: any[], userProperties: any[] ): void; // Simplified interface for posting events manually static post( timestamp: number, eventName: string, eventProperties: any[], errors: any[] ): void; } export = AvoDebugger; }