evolution-api-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
24 lines (22 loc) • 428 B
TypeScript
/**
* Configuration options for the Evolution API client
*/
interface ClientOptions {
/**
* Your server URL
*/
serverUrl: string;
/**
* Your instance token or global API key
*/
token: string;
/**
* Your instance name
*/
instance?: string;
/**
* Custom headers to include in requests
*/
headers?: Record<string, string>;
}
export type { ClientOptions };