27 lines
560 B
TypeScript
27 lines
560 B
TypeScript
![]() |
export {gfmFootnoteFromMarkdown, gfmFootnoteToMarkdown} from './lib/index.js'
|
||
|
|
||
|
declare module 'mdast-util-to-markdown' {
|
||
|
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
|
||
|
interface ConstructNameMap {
|
||
|
/**
|
||
|
* Footnote reference.
|
||
|
*
|
||
|
* ```markdown
|
||
|
* > | A[^b].
|
||
|
* ^^^^
|
||
|
* ```
|
||
|
*/
|
||
|
footnoteReference: 'footnoteReference'
|
||
|
|
||
|
/**
|
||
|
* Footnote definition.
|
||
|
*
|
||
|
* ```markdown
|
||
|
* > | [^a]: B.
|
||
|
* ^^^^^^^^
|
||
|
* ```
|
||
|
*/
|
||
|
footnoteDefinition: 'footnoteDefinition'
|
||
|
}
|
||
|
}
|