UNPKG

@vivliostyle/core

Version:

Vivliostyle Core library for HTML+CSS typesetting with EPUB/Web publications support

9 lines (8 loc) 284 B
export interface PrintConfig { title: string; printCallback: (iframeWin: Window) => void; errorCallback: (message: string) => void | null; hideIframe: boolean; removeIframe: boolean; } export declare function printHTML(htmlDoc: string, config: PrintConfig): void;