/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { topicsList } from "../funcs/topicsList.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import { unwrapAsync } from "../types/fp.js"; export class Topics extends ClientSDK { /** * List Available Topics * * @remarks * Returns a list of available event topics configured in the Outpost instance. */ async list( options?: RequestOptions, ): Promise> { return unwrapAsync(topicsList( this, options, )); } }