UNPKG

@paperbits/common

Version:
11 lines (10 loc) 227 B
/** * Provides an HTML document. */ export interface HtmlDocumentProvider { /** * Creates an HTML document. * @param html - Initial HTML content. */ createDocument(html?: string): Document; }