/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { ClientSDK } from "../lib/sdks.js"; import { Documents } from "./documents.js"; import { Indexes } from "./indexes.js"; export class Ducky extends ClientSDK { private _documents?: Documents; get documents(): Documents { return (this._documents ??= new Documents(this._options)); } private _indexes?: Indexes; get indexes(): Indexes { return (this._indexes ??= new Indexes(this._options)); } }