UNPKG

@doczilla/node

Version:
20 lines (19 loc) 597 B
import type { PageOptions } from './PageOptions'; import type { PdfOptions } from './PdfOptions'; import type { ScreenshotOptions } from './ScreenshotOptions'; import type { StorageOptions } from './StorageOptions'; export type SyncFromTemplate = { /** * Page options. */ page?: PageOptions | null; /** * Screenshot options, only used if Template's output is "SCREENSHOT". */ screenshot?: ScreenshotOptions | null; /** * Pdf options, only used if Template's output is "PDF". */ pdf?: PdfOptions | null; storage?: StorageOptions | null; };