UNPKG

@doczilla/node

Version:
22 lines (20 loc) 655 B
/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { PageOptions } from './PageOptions'; import type { PdfOptions } from './PdfOptions'; import type { StorageOptions } from './StorageOptions'; import type { WebhookOptions } from './WebhookOptions'; export type AsyncPdf = { /** * Page options, either provide the `url`, `html` or `htmlTemplate` option. */ page: PageOptions; pdf?: PdfOptions | null; storage?: StorageOptions | null; /** * Webhook to call when screenshot is generated. */ webhook: WebhookOptions; };