UNPKG

harvest

Version:
16 lines (15 loc) 461 B
import { InvoicesPagenationParameters, Invoice } from '../models/invoices.models'; export declare class InvoicesAPI { harvest: any; baseUrl: string; constructor(harvest: any); get(id: any): any; list(query?: InvoicesPagenationParameters): any; create(data: Invoice): any; update(id: any, data: any): any; delete(id: any): any; draft(id: any): any; send(id: any): any; close(id: any): any; reopen(id: any): any; }