Files
study-bible-project/node_modules/docx/dist/file/paragraph/math/brackets/math-bracket-properties.d.ts
T

10 lines
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 {};