UNPKG

@docusign/iam-sdk

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.

18 lines 674 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Tab } from "./tab.js"; export type TabInfo = { /** * Unique ID of the installed extension app */ appId: string; /** * Tab data representing the tabs associated with installed apps in the account */ tabs: Array<Tab>; }; /** @internal */ export declare const TabInfo$inboundSchema: z.ZodType<TabInfo, z.ZodTypeDef, unknown>; export declare function tabInfoFromJSON(jsonString: string): SafeParseResult<TabInfo, SDKValidationError>; //# sourceMappingURL=tabinfo.d.ts.map