Skip to content

Commit acccebf

Browse files
committed
Update dev-dependencies
1 parent df1e1d4 commit acccebf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

complex-types.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
import type {Literal} from 'mdast'
22

3+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
34
export interface Math extends Literal {
45
type: 'math'
56
meta?: string | null
67
}
78

9+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
810
export interface InlineMath extends Literal {
911
type: 'inlineMath'
1012
}
1113

1214
declare module 'mdast' {
15+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
1316
interface StaticPhrasingContentMap {
1417
inlineMath: InlineMath
1518
}
1619

20+
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
1721
interface BlockContentMap {
1822
math: Math
1923
}

0 commit comments

Comments
 (0)