skailan-contacts
Version:
Servicio de gestión de contactos para Skailan
8 lines • 855 B
TypeScript
import { Request, Response } from 'express';
export declare const createContact: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const getContactById: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const listContacts: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const updateContact: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const deleteContact: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const searchContactByEmail: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
//# sourceMappingURL=contactController.d.ts.map