mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-11 01:01:13 +00:00
24 lines
788 B
TypeScript
24 lines
788 B
TypeScript
export { clearAccountEntryFields } from "openclaw/plugin-sdk/core";
|
|
import { DEFAULT_ACCOUNT_ID } from "openclaw/plugin-sdk/account-id";
|
|
import type { OpenClawConfig } from "openclaw/plugin-sdk/account-resolution";
|
|
import type { ChannelPlugin } from "openclaw/plugin-sdk/core";
|
|
import {
|
|
listLineAccountIds,
|
|
normalizeAccountId,
|
|
resolveDefaultLineAccountId,
|
|
resolveLineAccount,
|
|
} from "./accounts.js";
|
|
import { resolveExactLineGroupConfigKey } from "./group-keys.js";
|
|
import type { LineConfig, ResolvedLineAccount } from "./types.js";
|
|
|
|
export {
|
|
DEFAULT_ACCOUNT_ID,
|
|
listLineAccountIds,
|
|
normalizeAccountId,
|
|
resolveDefaultLineAccountId,
|
|
resolveExactLineGroupConfigKey,
|
|
resolveLineAccount,
|
|
};
|
|
|
|
export type { ChannelPlugin, LineConfig, OpenClawConfig, ResolvedLineAccount };
|