/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { systemPing } from "../funcs/systemPing.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import { unwrapAsync } from "../types/fp.js"; export class System extends ClientSDK { /** * Ping */ async ping( options?: RequestOptions, ): Promise { return unwrapAsync(systemPing( this, options, )); } }