UNPKG

fathom-typescript

Version:

Fathom's official TypeScript SDK.

16 lines 706 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TranscriptItemSpeaker } from "./transcriptitemspeaker.js"; export type TranscriptItem = { speaker: TranscriptItemSpeaker; text: string; /** * Timestamp relative to the start of the meeting (HH:MM:SS). */ timestamp: string; }; /** @internal */ export declare const TranscriptItem$inboundSchema: z.ZodType<TranscriptItem, z.ZodTypeDef, unknown>; export declare function transcriptItemFromJSON(jsonString: string): SafeParseResult<TranscriptItem, SDKValidationError>; //# sourceMappingURL=transcriptitem.d.ts.map