This commit is contained in:
counterweight 2026-05-14 10:56:04 +02:00
parent bc92231240
commit b8225c639e
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
11904 changed files with 1472749 additions and 133 deletions

13
node_modules/mathjax-full/js/input/asciimath.d.ts generated vendored Normal file
View file

@ -0,0 +1,13 @@
import { AbstractInputJax } from '../core/InputJax.js';
import { OptionList } from '../util/Options.js';
import { MathDocument } from '../core/MathDocument.js';
import { MathItem } from '../core/MathItem.js';
import { FindAsciiMath } from './asciimath/FindAsciiMath.js';
export declare class AsciiMath<N, T, D> extends AbstractInputJax<N, T, D> {
static NAME: string;
static OPTIONS: OptionList;
protected findAsciiMath: FindAsciiMath<N, T, D>;
constructor(options: OptionList);
compile(math: MathItem<N, T, D>, _document: MathDocument<N, T, D>): any;
findMath(strings: string[]): import("../core/MathItem.js").ProtoItem<N, T>[];
}