Skip to content

Commit

Permalink
Try to fix import path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerlong committed Jan 24, 2025
1 parent a46f033 commit 08aacf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/extensions/debug/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import type {
RestMethod,
RestRequestConfig,
RestResponse,
} from "@rc-ex/core/lib/types";
import Utils from "@rc-ex/core/lib/Utils";
import SdkExtension from "@rc-ex/core/lib/SdkExtension";
} from "@rc-ex/core/src/types";
import Utils from "@rc-ex/core/src/Utils";
import SdkExtension from "@rc-ex/core/src/SdkExtension";

export interface DebugOptions {
loggingAction?: (message: string) => void;
Expand Down

0 comments on commit 08aacf3

Please sign in to comment.