@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
11 lines (10 loc) • 534 B
TypeScript
import type { OpenClawConfig } from "../config/config.js";
import type { ResolvedLineAccount } from "./types.js";
export declare const DEFAULT_ACCOUNT_ID = "default";
export declare function resolveLineAccount(params: {
cfg: OpenClawConfig;
accountId?: string;
}): ResolvedLineAccount;
export declare function listLineAccountIds(cfg: OpenClawConfig): string[];
export declare function resolveDefaultLineAccountId(cfg: OpenClawConfig): string;
export declare function normalizeAccountId(accountId: string | undefined): string;