Typicalc/frontend/src/mathjax-display.ts

7 lines
196 B
TypeScript
Raw Normal View History

2021-01-28 09:41:20 +00:00
import {MathjaxAdapter} from "./mathjax-adapter";
class MathjaxDisplay extends MathjaxAdapter {
2021-02-10 15:45:36 +00:00
protected showStep(_n: number): void {}
2021-01-28 09:41:20 +00:00
}
customElements.define('tc-display', MathjaxDisplay);