@flashlog/tracker-sdk 0.1.3 → 0.1.5-hotfix.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,13 +1,6 @@
1
1
  import { DEFAULT_CONFIG } from "./constants";
2
- import { TrackerPublicApi } from "./types";
3
- declare global {
4
- interface Window {
5
- FlashlogBugTracker?: TrackerPublicApi;
6
- Tracker?: TrackerPublicApi;
7
- }
8
- }
9
- declare const tracker: TrackerPublicApi;
10
- export declare const flashlogTracker: TrackerPublicApi;
2
+ declare const tracker: import("./types").TrackerPublicApi;
3
+ export declare const flashlogTracker: import("./types").TrackerPublicApi;
11
4
  export { DEFAULT_CONFIG };
12
5
  export { createTracker, FlashlogTrackerLite } from "./tracker";
13
6
  export type { DeviceInfo, NetworkStatus, ReplayFinalizeResult, ReplayFlushResult, TrackerConfig, TrackerPayload, TrackerPublicApi, TrackerTraceContext, UserAction, } from "./types";
@@ -0,0 +1,9 @@
1
+ import { TrackerPublicApi } from "./types";
2
+ declare global {
3
+ interface Window {
4
+ FlashlogBugTracker?: TrackerPublicApi;
5
+ Tracker?: TrackerPublicApi;
6
+ }
7
+ }
8
+ declare const tracker: TrackerPublicApi;
9
+ export default tracker;