UNPKG

buena-typescript-sdk

Version:

Official TypeScript SDK for Buena.ai API - LinkedIn automation and lead management

18 lines 729 B
import { SDKOptions } from "../../../lib/config.js"; import { LocalContext } from "../../cli.js"; import { ConsoleLoggerLevel } from "../../console-logger.js"; import { MCPScope } from "../../scopes.js"; interface StartCommandFlags { readonly transport: "stdio" | "sse"; readonly port: number; readonly tool?: string[]; readonly scope?: MCPScope[]; readonly "api-key-auth"?: string | undefined; readonly "server-url"?: string; readonly "server-index"?: SDKOptions["serverIdx"]; readonly "log-level": ConsoleLoggerLevel; readonly env?: [string, string][]; } export declare function main(this: LocalContext, flags: StartCommandFlags): Promise<void>; export {}; //# sourceMappingURL=impl.d.ts.map