UNPKG

fathom-typescript

Version:

Fathom's official TypeScript SDK.

14 lines 482 B
import * as z from "zod/v3"; export type Security = { apiKeyAuth?: string | undefined; bearerAuth?: string | undefined; }; /** @internal */ export type Security$Outbound = { ApiKeyAuth?: string | undefined; BearerAuth?: string | undefined; }; /** @internal */ export declare const Security$outboundSchema: z.ZodType<Security$Outbound, z.ZodTypeDef, Security>; export declare function securityToJSON(security: Security): string; //# sourceMappingURL=security.d.ts.map