UNPKG

@doczilla/node

Version:
17 lines (16 loc) 577 B
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 {};