zohobooks-sdk
Version:
SDK for ZohoBooks integration
12 lines (11 loc) • 418 B
TypeScript
import { APIHost, ZohoBooksApi, ZohoBooksConfig } from "./api";
import { Contacts } from "./resources/contacts";
import { ZohoBooksAuth } from "./auth";
import { Invoices } from "resources/invoices";
export declare class ZohoBooks {
private readonly api;
readonly contacts: Contacts;
readonly invoices: Invoices;
constructor(config: ZohoBooksConfig);
}
export { APIHost, ZohoBooksApi, ZohoBooksAuth };