UNPKG

harvest

Version:
12 lines (11 loc) 364 B
import { ContactsPagenationParameters, Contact } from '../models/contacts.models'; export declare class ContactsAPI { harvest: any; baseUrl: string; constructor(harvest: any); get(id: any): any; list(query?: ContactsPagenationParameters): any; create(contact: Contact): any; update(id: any, data: any): any; delete(id: any): any; }