UNPKG

@doczilla/node

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