UNPKG

fathom-typescript

Version:

Fathom's official TypeScript SDK.

15 lines 574 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CRMDealMatch = { name: string; /** * The amount in dollars. */ amount: number; recordUrl: string; }; /** @internal */ export declare const CRMDealMatch$inboundSchema: z.ZodType<CRMDealMatch, z.ZodTypeDef, unknown>; export declare function crmDealMatchFromJSON(jsonString: string): SafeParseResult<CRMDealMatch, SDKValidationError>; //# sourceMappingURL=crmdealmatch.d.ts.map