@segment/analytics-react-native
Version:
The hassle-free way to add Segment analytics to your React-Native app.
29 lines (28 loc) • 740 B
text/typescript
export { defaultConfig } from './constants';
export * from './client';
export * from './plugin';
export * from './types';
export * from './mapTransform';
export {
getNativeModule,
isNumber,
isString,
isObject,
isBoolean,
isDate,
objectToString,
unknownToString,
deepCompare,
chunk,
} from './util';
export { SegmentClient } from './analytics';
export { QueueFlushingPlugin } from './plugins/QueueFlushingPlugin';
export { createTrackEvent } from './events';
export { uploadEvents } from './api';
export { SegmentDestination } from './plugins/SegmentDestination';
export {
type CategoryConsentStatusProvider,
ConsentPlugin,
} from './plugins/ConsentPlugin';
export * from './flushPolicies';
export * from './errors';