UNPKG

scheunemann-interfaces

Version:
14 lines (13 loc) 409 B
import { IEvolutionChatWoot } from './i-chatwoot'; export interface IEvolutionInstance { instanceName: string; instanceId: string; status: 'open' | 'close' | 'connecting' | string; serverUrl: string; apikey: string; owner: string | null; profileName: string | null; profilePictureUrl: string | null; profileStatus: string | null; chatwoot: IEvolutionChatWoot | null; }