UNPKG

@doczilla/node

Version:
12 lines (11 loc) 388 B
import type { PageOptions } from './PageOptions'; import type { PdfOptions } from './PdfOptions'; import type { ScreenshotOptions } from './ScreenshotOptions'; export type TemplateVariables = { /** * Page options, either provide the `url`, `html` or `htmlTemplate` option. */ page: PageOptions; screenshot?: ScreenshotOptions | null; pdf?: PdfOptions | null; };