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) • 344 B
TypeScript
import { XmlComponent } from '../../../xml-components';
type MathBracketPropertiesOptions = {
readonly characters?: {
readonly beginningCharacter: string;
readonly endingCharacter: string;
};
};
export declare const createMathBracketProperties: ({ characters }: MathBracketPropertiesOptions) => XmlComponent;
export {};