Files
rrweb/src/index.ts
yz-yu 1efc9ad30b Bundles (#199)
* provide more bundle outputs

* update commonJS and es module entry to boot file
2026-04-01 12:00:00 +08:00

15 lines
293 B
TypeScript

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