Files
rrweb/src/index.ts
Yanzhen Yu f78070a824 impl #81 custom event
This is the record side impl of custom event, according to the
issue, we may also add first-class support for the custom event
tag like display color labels in the replayer-ui.
2019-07-24 22:32:11 +08:00

12 lines
276 B
TypeScript

import record, { addCustomEvent } from './record';
import { Replayer } from './replay';
import { mirror } from './utils';
export {
EventType,
IncrementalSource,
MouseInteractions,
ReplayerEvents,
} from './types';
export { record, addCustomEvent, Replayer, mirror };