mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-28 05:16:23 -06:00
568b920b21
* refactor(imports): dedupe and hoist imports * feat(lint): enforce import/no-duplicates and import/first
19 lines
792 B
TypeScript
19 lines
792 B
TypeScript
// Line API module exposes the plugin public contract.
|
|
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 { clearAccountEntryFields } from "openclaw/plugin-sdk/core";
|
|
|
|
export {
|
|
DEFAULT_ACCOUNT_ID,
|
|
listLineAccountIds,
|
|
resolveDefaultLineAccountId,
|
|
resolveExactLineGroupConfigKey,
|
|
resolveLineAccount,
|
|
};
|
|
|
|
export type { ChannelPlugin, LineConfig, OpenClawConfig, ResolvedLineAccount };
|