mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-20 04:12:23 -06:00
7 lines
319 B
TypeScript
7 lines
319 B
TypeScript
import { ChatwootInstanceMixin } from '@api/integrations/chatbot/chatwoot/dto/chatwoot.dto';
|
|
import { EventInstanceMixin } from '@api/integrations/event/event.dto';
|
|
|
|
export type Constructor<T = {}> = new (...args: any[]) => T;
|
|
|
|
export class IntegrationDto extends EventInstanceMixin(ChatwootInstanceMixin(class {})) {}
|