UNPKG

attio-js

Version:

Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.

15 lines 452 B
import * as z from "zod"; export interface Env { ATTIO_API_KEY?: string | undefined; ATTIO_DEBUG?: boolean | undefined; } export declare const envSchema: z.ZodType<Env, z.ZodTypeDef, unknown>; /** * Reads and validates environment variables. */ export declare function env(): Env; /** * Clears the cached env object. Useful for testing with a fresh environment. */ export declare function resetEnv(): void; //# sourceMappingURL=env.d.ts.map