返回 reveal.js
math.d.ts
根目录 / dist / plugin / math.d.ts
1 import { RevealPlugin } from 'reveal.js';
2 export interface KaTeXPlugin extends RevealPlugin {
3 id: 'katex';
4 }
5 export interface MathJax2Plugin extends RevealPlugin {
6 id: 'mathjax2';
7 }
8 export interface MathJax3Plugin extends RevealPlugin {
9 id: 'mathjax3';
10 }
11 export interface MathJax4Plugin extends RevealPlugin {
12 id: 'mathjax4';
13 }
14 export interface MathPlugin extends MathJax2Plugin {
15 KaTeX: () => KaTeXPlugin;
16 MathJax2: () => MathJax2Plugin;
17 MathJax3: () => MathJax3Plugin;
18 MathJax4: () => MathJax4Plugin;
19 }
20 declare const Math: MathPlugin;
21 export default Math;
22
22 lines TYPESCRIPT