Files
openclaw/extensions/line/src/channel-api.ts
Peter Steinberger 568b920b21 feat(lint): enforce import ordering and deduplication (#124730)
* refactor(imports): dedupe and hoist imports

* feat(lint): enforce import/no-duplicates and import/first
2026-08-16 11:44:52 -07:00

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 };