docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
11 lines (10 loc) • 471 B
TypeScript
import { BuilderElement } from '../../../../xml-components';
import { MathComponent } from '../../math-component';
export type IMathPreSubSuperScriptOptions = {
readonly children: readonly MathComponent[];
readonly subScript: readonly MathComponent[];
readonly superScript: readonly MathComponent[];
};
export declare class MathPreSubSuperScript extends BuilderElement {
constructor({ children, subScript, superScript }: IMathPreSubSuperScriptOptions);
}