Skip to content

Commit 5d03fdd

Browse files
committed
fix(browser): keep extract dep types module-local
1 parent 8d6fc12 commit 5d03fdd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/browser/src/browser-extract.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const EXTRACT_FAILURE_TEXT =
2323
"Browser extract could not answer this question. Fall back to action=snapshot and inspect the page directly.";
2424
const EXTRACT_MAX_OUTPUT_TOKENS = 2_048;
2525

26-
export type BrowserExtractCompletionDeps = {
26+
type BrowserExtractCompletionDeps = {
2727
completeWithPreparedSimpleCompletionModel: typeof import("openclaw/plugin-sdk/simple-completion-runtime").completeWithPreparedSimpleCompletionModel;
2828
extractAssistantText: typeof import("openclaw/plugin-sdk/simple-completion-runtime").extractAssistantText;
2929
getRuntimeConfig: typeof getRuntimeConfig;
@@ -33,7 +33,7 @@ export type BrowserExtractCompletionDeps = {
3333
sanitizeHtml: typeof import("openclaw/plugin-sdk/web-content-extractor").sanitizeHtml;
3434
};
3535

36-
export type BrowserExtractDeps = BrowserExtractCompletionDeps & {
36+
type BrowserExtractDeps = BrowserExtractCompletionDeps & {
3737
browserPageContent: typeof browserPageContent;
3838
};
3939

0 commit comments

Comments
 (0)