mathRender.d.ts 220 B

12345678910
  1. /// <reference types="./types" />
  2. declare global {
  3. interface Window {
  4. MathJax: any;
  5. }
  6. }
  7. export declare const mathRender: (element: HTMLElement, options?: {
  8. cdn?: string;
  9. math?: IMath;
  10. }) => void;