Files
rrweb/src/index.ts
yz-yu 4f36d0e57d Packer (#172)
* introduce pako and add general packer interface

* add tests for packer

* use function API instead of class API for better tree shaking support

* refcatoring the rollup bundle config
2020-04-07 18:03:47 +08:00

16 lines
334 B
TypeScript

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