docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
8 lines (7 loc) • 323 B
TypeScript
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
type MathSuperScriptElementOptions = {
readonly children: readonly MathComponent[];
};
export declare const createMathSuperScriptElement: ({ children }: MathSuperScriptElementOptions) => XmlComponent;
export {};