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

21
node_modules/mathjax-full/js/core/Handler.d.ts generated vendored Normal file
View file

@ -0,0 +1,21 @@
import { MathDocument, AbstractMathDocument, MathDocumentConstructor } from './MathDocument.js';
import { OptionList } from '../util/Options.js';
import { DOMAdaptor } from '../core/DOMAdaptor.js';
export interface Handler<N, T, D> {
name: string;
adaptor: DOMAdaptor<N, T, D>;
priority: number;
documentClass: MathDocumentConstructor<AbstractMathDocument<N, T, D>>;
handlesDocument(document: any): boolean;
create(document: any, options: OptionList): MathDocument<N, T, D>;
}
export declare abstract class AbstractHandler<N, T, D> implements Handler<N, T, D> {
static NAME: string;
adaptor: DOMAdaptor<N, T, D>;
priority: number;
documentClass: MathDocumentConstructor<AbstractMathDocument<N, T, D>>;
constructor(adaptor: DOMAdaptor<N, T, D>, priority?: number);
get name(): string;
handlesDocument(_document: any): boolean;
create(document: any, options: OptionList): MathDocument<N, T, D>;
}