We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df1e1d4 commit acccebfCopy full SHA for acccebf
complex-types.d.ts
@@ -1,19 +1,23 @@
1
import type {Literal} from 'mdast'
2
3
+// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
4
export interface Math extends Literal {
5
type: 'math'
6
meta?: string | null
7
}
8
9
10
export interface InlineMath extends Literal {
11
type: 'inlineMath'
12
13
14
declare module 'mdast' {
15
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions
16
interface StaticPhrasingContentMap {
17
inlineMath: InlineMath
18
19
20
21
interface BlockContentMap {
22
math: Math
23
0 commit comments