This patch introduce a breaking change in rrweb-record's API, so we will revert it in 0.7.x and release it in 0.8.
12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
import record from './record';
|
|
import { Replayer } from './replay';
|
|
import { mirror } from './utils';
|
|
|
|
export {
|
|
EventType,
|
|
IncrementalSource,
|
|
MouseInteractions,
|
|
ReplayerEvents,
|
|
} from './types';
|
|
export { record, Replayer, mirror };
|