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