@monsoft/davinci-ai
Version:
Davinci AI Client
13 lines (12 loc) • 315 B
TypeScript
import z from "zod";
export declare const authConfigSchema: z.ZodObject<{
api_key: z.ZodString;
auth_token: z.ZodString;
}, "strip", z.ZodTypeAny, {
api_key: string;
auth_token: string;
}, {
api_key: string;
auth_token: string;
}>;
export type AuthConfig = z.infer<typeof authConfigSchema>;