docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
10 lines (9 loc) • 354 B
TypeScript
import { XmlComponent } from "../../../../../file/xml-components";
import { MathComponent } from "../../math-component";
export interface IMathSubScriptOptions {
readonly children: MathComponent[];
readonly subScript: MathComponent[];
}
export declare class MathSubScript extends XmlComponent {
constructor(options: IMathSubScriptOptions);
}