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.

8 lines (7 loc) 210 B
import { Document } from "../Document"; import { Chp } from "../parser/Containers"; export declare class RenderChp { _chp: Chp; constructor(chp: Chp); apply(doc: Document, el: HTMLElement): void; }