mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 05:46:04 +00:00
19 lines
792 B
TypeScript
19 lines
792 B
TypeScript
// Line API module exposes the plugin public contract.
|
|
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, resolveDefaultLineAccountId, resolveLineAccount } from "./accounts.js";
|
|
import { resolveExactLineGroupConfigKey } from "./group-keys.js";
|
|
import type { LineConfig, ResolvedLineAccount } from "./types.js";
|
|
|
|
export {
|
|
DEFAULT_ACCOUNT_ID,
|
|
listLineAccountIds,
|
|
resolveDefaultLineAccountId,
|
|
resolveExactLineGroupConfigKey,
|
|
resolveLineAccount,
|
|
};
|
|
|
|
export type { ChannelPlugin, LineConfig, OpenClawConfig, ResolvedLineAccount };
|