UNPKG

evolution-api-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

13 lines (11 loc) 346 B
interface ConnectionStateRequest { instanceName: string; } interface ConnectionStateResponse { instance: { instanceName: string; state: "open" | "close" | "connecting"; }; } type ConnectionStateOptions = ConnectionStateRequest; export type { ConnectionStateOptions, ConnectionStateRequest, ConnectionStateResponse };