@solufy/evolution-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
28 lines (25 loc) • 572 B
TypeScript
import { z } from 'zod';
declare const ClientOptionsSchema: z.ZodObject<{
/**
* Your server URL
*/
serverUrl: z.ZodString;
/**
* Your instance token or global API key
*/
token: z.ZodString;
/**
* Your instance name
*/
instance: z.ZodString;
}, "strip", z.ZodTypeAny, {
serverUrl: string;
token: string;
instance: string;
}, {
serverUrl: string;
token: string;
instance: string;
}>;
type ClientOptions = z.infer<typeof ClientOptionsSchema>;
export { type ClientOptions, ClientOptionsSchema };