mathup
Version:
Easy MathML authoring tool with a quick to write syntax
21 lines • 656 B
TypeScript
export default class MathUpElement extends HTMLElement {
static get observedAttributes(): string[];
update(): void;
updateRequest: number;
/**
* @param {string} name
* @param {string} _oldValue
* @param {string} newValue
* @returns {void}
*/
attributeChangedCallback(name: string, _oldValue: string, newValue: string): void;
set display(value: string);
get display(): string;
set decimalMark(value: string);
get decimalMark(): string;
set colSep(value: string);
get colSep(): string;
set rowSep(value: string);
get rowSep(): string;
}
//# sourceMappingURL=custom-element.d.ts.map