@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
14 lines (11 loc) • 333 B
text/typescript
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import { ClientSDK } from "../lib/sdks.js";
import { TabInfo } from "./tabinfo.js";
export class ConnectedFields extends ClientSDK {
private _tabInfo?: TabInfo;
get tabInfo(): TabInfo {
return (this._tabInfo ??= new TabInfo(this._options));
}
}