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