UNPKG

skailan-conversations

Version:

Servicio de conversaciones y mensajería para Skailan

7 lines 751 B
import { Request, Response } from "express"; export declare const startConversation: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const getConversationById: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const listConversations: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const updateConversation: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const deleteConversation: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; //# sourceMappingURL=conversationController.d.ts.map