UNPKG

buena-typescript-sdk

Version:

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

18 lines (13 loc) 293 B
<!-- Start SDK Example Usage [usage] --> ```typescript import { SDK } from "openapi"; const sdk = new SDK({ apiKeyAuth: "<YOUR_API_KEY_HERE>", }); async function run() { const result = await sdk.healthCheck(); console.log(result); } run(); ``` <!-- End SDK Example Usage [usage] -->