@doczilla/node
Version:
Doczilla API wrapper
12 lines (11 loc) • 401 B
TypeScript
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;
};