mathjax.d.ts 523 B

123456789101112
  1. import { HandlerList } from './core/HandlerList.js';
  2. import { handleRetriesFor, retryAfter } from './util/Retries.js';
  3. import { OptionList } from './util/Options.js';
  4. import { MathDocument } from './core/MathDocument.js';
  5. export declare const mathjax: {
  6. version: string;
  7. handlers: HandlerList<any, any, any>;
  8. document: (document: any, options: OptionList) => MathDocument<any, any, any>;
  9. handleRetriesFor: typeof handleRetriesFor;
  10. retryAfter: typeof retryAfter;
  11. asyncLoad: (file: string) => any;
  12. };