/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import dotenv from "dotenv"; dotenv.config(); /** * Example usage of the @hookdeck/outpost-sdk SDK * * To run this example from the examples directory: * npm run build && npx tsx healthCheck.example.ts */ import { Outpost } from "@hookdeck/outpost-sdk"; const outpost = new Outpost(); async function main() { const result = await outpost.health.check(); console.log(result); } main().catch(console.error);