add initial marp implementation with sample content and build configuration
This commit is contained in:
19
node_modules/mathjax-full/js/a11y/complexity.d.ts
generated
vendored
Normal file
19
node_modules/mathjax-full/js/a11y/complexity.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Handler } from '../core/Handler.js';
|
||||
import { MathDocumentConstructor } from '../core/MathDocument.js';
|
||||
import { MathML } from '../input/mathml.js';
|
||||
import { MmlNode } from '../core/MmlTree/MmlNode.js';
|
||||
import { EnrichedMathItem, EnrichedMathDocument } from './semantic-enrich.js';
|
||||
export declare type Constructor<T> = new (...args: any[]) => T;
|
||||
export declare type EMItemC<N, T, D> = Constructor<EnrichedMathItem<N, T, D>>;
|
||||
export declare type CMItemC<N, T, D> = Constructor<ComplexityMathItem<N, T, D>>;
|
||||
export declare type EMDocC<N, T, D> = MathDocumentConstructor<EnrichedMathDocument<N, T, D>>;
|
||||
export declare type CMDocC<N, T, D> = Constructor<ComplexityMathDocument<N, T, D>>;
|
||||
export interface ComplexityMathItem<N, T, D> extends EnrichedMathItem<N, T, D> {
|
||||
complexity(document: ComplexityMathDocument<N, T, D>, force?: boolean): void;
|
||||
}
|
||||
export declare function ComplexityMathItemMixin<N, T, D, B extends EMItemC<N, T, D>>(BaseMathItem: B, computeComplexity: (node: MmlNode) => void): CMItemC<N, T, D> & B;
|
||||
export interface ComplexityMathDocument<N, T, D> extends EnrichedMathDocument<N, T, D> {
|
||||
complexity(): ComplexityMathDocument<N, T, D>;
|
||||
}
|
||||
export declare function ComplexityMathDocumentMixin<N, T, D, B extends EMDocC<N, T, D>>(BaseDocument: B): CMDocC<N, T, D> & B;
|
||||
export declare function ComplexityHandler<N, T, D>(handler: Handler<N, T, D>, MmlJax?: MathML<N, T, D>): Handler<N, T, D>;
|
||||
Reference in New Issue
Block a user