/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { healthCheck } from "../funcs/health-check.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Health extends ClientSDK { async check( options?: RequestOptions, ): Promise { return unwrapAsync(healthCheck( this, options, )); } }