UNPKG

fathom-typescript

Version:

Fathom's official TypeScript SDK.

14 lines 602 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MeetingSummary = { templateName: string | null; /** * Always displayed in English. */ markdownFormatted: string | null; }; /** @internal */ export declare const MeetingSummary$inboundSchema: z.ZodType<MeetingSummary, z.ZodTypeDef, unknown>; export declare function meetingSummaryFromJSON(jsonString: string): SafeParseResult<MeetingSummary, SDKValidationError>; //# sourceMappingURL=meetingsummary.d.ts.map