UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

9 lines (8 loc) 263 B
import { IRunOptions, Run } from "./run"; export interface ISymbolRunOptions extends IRunOptions { readonly char: string; readonly symbolfont?: string; } export declare class SymbolRun extends Run { constructor(options: ISymbolRunOptions | string); }