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 da520c3 commit 5e0d718Copy full SHA for 5e0d718
index.d.ts
@@ -1,12 +1,12 @@
1
-import { RemarkMermaidOptions } from 'remark-mermaidjs'
+import type { RemarkMermaidOptions } from 'remark-mermaidjs' with { 'resolution-mode': 'import' }
2
3
declare namespace gatsbyRemarkMermaid {
4
- type Options = RemarkMermaidOptions
+ export { RemarkMermaidOptions as Options }
5
}
6
7
declare function gatsbyRemarkMermaid(
8
gatsbyRemarkOptions: unknown,
9
- options: RemarkMermaidOptions
10
-): Promise<void>
+ options: gatsbyRemarkMermaid.Options
+): Promise<undefined>
11
12
export = gatsbyRemarkMermaid
0 commit comments