fathom-typescript
Version:
Fathom's official TypeScript SDK.
12 lines • 519 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type Assignee = {
name: string | null;
email: string | null;
team: string | null;
};
/** @internal */
export declare const Assignee$inboundSchema: z.ZodType<Assignee, z.ZodTypeDef, unknown>;
export declare function assigneeFromJSON(jsonString: string): SafeParseResult<Assignee, SDKValidationError>;
//# sourceMappingURL=assignee.d.ts.map