@doczilla/node
Version:
Doczilla API wrapper
17 lines (16 loc) • 577 B
TypeScript
import { PdfService } from './services/PdfService';
import { ScreenshotService } from './services/ScreenshotService';
import { TemplateService } from './services/TemplateService';
import { WebhookService } from './services/WebhookService';
interface DoczillaOptions {
baseURL?: string;
}
export default class Doczilla {
private readonly client;
readonly pdf: PdfService;
readonly screenshot: ScreenshotService;
readonly webhook: WebhookService;
readonly template: TemplateService;
constructor(token: string, options?: DoczillaOptions);
}
export {};