7 lines
315 B
TypeScript
7 lines
315 B
TypeScript
import record from './record';
|
|
import { Replayer } from './replay';
|
|
import { mirror } from './utils';
|
|
export { EventType, IncrementalSource, MouseInteractions, ReplayerEvents, } from './types';
|
|
declare const addCustomEvent: <T>(tag: string, payload: T) => void;
|
|
export { record, addCustomEvent, Replayer, mirror };
|