UNPKG

airbridge-react-native-sdk

Version:

Airbridge SDK for React Native

15 lines (14 loc) 525 B
export declare const createDependency: { (): void; EventModule(): { interactor: EventInteractor; }; }; type EventInteractor = { trackEvent(category: string, semanticAttributes?: Record<string, any>, customAttributes?: Record<string, any>): void; }; export type EventModule = ReturnType<typeof createEventModule>; export declare const createEventModule: () => { trackEvent: (category: string, semanticAttributes?: Record<string, any>, customAttributes?: Record<string, any>) => void; }; export {};