UNPKG

gn-rtf.js

Version:

Render RTF documents in HTML. This also includes rendering WMF and EMF images which are often contained in RTF documents.

9 lines (8 loc) 291 B
import { Document } from "../Document"; import { Pap } from "../parser/Containers"; import { RenderChp } from "./RenderChp"; export declare class RenderPap { private _pap; constructor(pap: Pap); apply(doc: Document, el: HTMLElement, rchp: RenderChp, ismaindiv: boolean): void; }