UNPKG

harvest

Version:
16 lines (15 loc) 470 B
import { EstimatesPagenationParameters, Estimate } from '../models/estimates.models'; export declare class EstimatesAPI { harvest: any; baseUrl: string; constructor(harvest: any); get(id: any): any; list(query?: EstimatesPagenationParameters): any; create(data: Estimate): any; update(id: any, data: any): any; delete(id: any): any; send(id: any): any; accept(id: any): any; decline(id: any): any; reopen(id: any): any; }