gn-rtf.js
Version:
Render RTF documents in HTML. This also includes rendering WMF and EMF images which are often contained in RTF documents.
7 lines (6 loc) • 312 B
TypeScript
import { Document } from "../../Document";
import { GlobalState } from "../Containers";
import { DestinationFactory } from "./DestinationBase";
export declare const Destinations: {
[key: string]: ((new (parser: GlobalState, inst: Document, name: string, param: number) => any) | DestinationFactory<any>);
};