Skip to content

Commit 7884ee2

Browse files
committed
lint fixes
1 parent fed87a4 commit 7884ee2

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

packages/browser-sdk/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export type { Feature, InitOptions, ToolbarOptions } from "./client";
22
export { BucketClient } from "./client";
33
export type { BucketContext, CompanyContext, UserContext } from "./context";
4-
export type { TrackEvent } from "./hooksManager";
54
export type {
65
CheckEvent,
76
FallbackFeatureOverride,
@@ -29,5 +28,6 @@ export type {
2928
OnScoreSubmitResult,
3029
OpenFeedbackFormOptions,
3130
} from "./feedback/ui/types";
31+
export type { TrackEvent } from "./hooksManager";
3232
export type { Logger } from "./logger";
3333
export { feedbackContainerId, propagatedEvents } from "./ui/constants";

packages/react-sdk/src/index.tsx

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,25 @@ import canonicalJSON from "canonical-json";
1313
import {
1414
BucketClient,
1515
BucketContext,
16+
CheckEvent,
17+
CompanyContext,
1618
InitOptions,
1719
RawFeatures,
1820
RequestFeedbackData,
21+
TrackEvent,
1922
UnassignedFeedback,
2023
UserContext,
21-
CompanyContext,
22-
CheckEvent,
23-
TrackEvent,
2424
} from "@bucketco/browser-sdk";
2525

26+
import { version } from "../package.json";
27+
2628
export type {
27-
TrackEvent,
28-
UserContext,
29-
CompanyContext,
3029
CheckEvent,
30+
CompanyContext,
3131
RawFeatures,
32+
TrackEvent,
33+
UserContext,
3234
};
33-
import { version } from "../package.json";
3435

3536
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
3637
export interface Features {}

0 commit comments

Comments
 (0)