UNPKG

rrweb

Version:
8 lines (7 loc) 268 B
import type { eventWithTime } from '@rrweb/types'; export type PackFn = (event: eventWithTime) => string; export type UnpackFn = (raw: string) => eventWithTime; export type eventWithTimeAndPacker = eventWithTime & { v: string; }; export declare const MARK = "v1";