mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-24 07:31:44 +00:00
refactor: remove type-only import cycles
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { ChannelSetupWizard } from "../channels/plugins/setup-wizard.js";
|
||||
import type { ChannelSetupWizard } from "../channels/plugins/setup-wizard-types.js";
|
||||
import type { ChannelSetupAdapter } from "../channels/plugins/types.adapters.js";
|
||||
import type { ChannelSetupInput } from "../channels/plugins/types.core.js";
|
||||
import {
|
||||
|
||||
@@ -40,7 +40,7 @@ export type {
|
||||
export type {
|
||||
ChannelSetupWizard,
|
||||
ChannelSetupWizardAllowFromEntry,
|
||||
} from "../channels/plugins/setup-wizard.js";
|
||||
} from "../channels/plugins/setup-wizard-types.js";
|
||||
export type {
|
||||
AnyAgentTool,
|
||||
CliBackendPlugin,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { ChannelSetupWizard } from "../channels/plugins/setup-wizard.js";
|
||||
import type { ChannelSetupWizard } from "../channels/plugins/setup-wizard-types.js";
|
||||
import type { ChannelSetupAdapter } from "../channels/plugins/types.adapters.js";
|
||||
import { DEFAULT_ACCOUNT_ID } from "../routing/session-key.js";
|
||||
import { formatDocsLink } from "../terminal/links.js";
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
export type { OpenClawConfig } from "../config/config.js";
|
||||
export type { WizardPrompter } from "../wizard/prompts.js";
|
||||
export type { ChannelSetupAdapter } from "../channels/plugins/types.adapters.js";
|
||||
export type { ChannelSetupDmPolicy } from "../channels/plugins/setup-wizard-types.js";
|
||||
export type {
|
||||
ChannelSetupDmPolicy,
|
||||
ChannelSetupWizard,
|
||||
ChannelSetupWizardAllowFromEntry,
|
||||
ChannelSetupWizardTextInput,
|
||||
} from "../channels/plugins/setup-wizard.js";
|
||||
} from "../channels/plugins/setup-wizard-types.js";
|
||||
|
||||
export { DEFAULT_ACCOUNT_ID } from "../routing/session-key.js";
|
||||
|
||||
|
||||
@@ -10,12 +10,10 @@ export type { ChannelSetupInput } from "../channels/plugins/types.core.js";
|
||||
export type {
|
||||
ChannelSetupDmPolicy,
|
||||
ChannelSetupWizardAdapter,
|
||||
} from "../channels/plugins/setup-wizard-types.js";
|
||||
export type {
|
||||
ChannelSetupWizard,
|
||||
ChannelSetupWizardAllowFromEntry,
|
||||
ChannelSetupWizardTextInput,
|
||||
} from "../channels/plugins/setup-wizard.js";
|
||||
} from "../channels/plugins/setup-wizard-types.js";
|
||||
|
||||
export { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../routing/session-key.js";
|
||||
export { formatCliCommand } from "../cli/command-format.js";
|
||||
|
||||
Reference in New Issue
Block a user