3b8aa97396
* Remove custom config and use tex-chtml-full for editor Mathjax * Add mathjax package in /ts * Share mathjax config between tex-svg and tex-chtml * Use "[+]" in Mathjax config again * Remove mention of MathJaxReady * Satisfy eslint
16 lines
338 B
TypeScript
16 lines
338 B
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
/* eslint
|
|
@typescript-eslint/no-explicit-any: "off",
|
|
*/
|
|
|
|
export {};
|
|
|
|
declare global {
|
|
interface Window {
|
|
// Mathjax does not provide a full type
|
|
MathJax: { [name: string]: any };
|
|
}
|
|
}
|