skailan-crm
Version:
Servicio de CRM y gestión de ventas para Skailan
8 lines • 844 B
TypeScript
import { Request, Response } from "express";
export declare const createQuote: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const getQuoteById: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const listQuotes: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const updateQuote: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const deleteQuote: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
export declare const incrementQuoteVersion: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>;
//# sourceMappingURL=quoteController.d.ts.map