mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 16:39:29 +08:00
20 lines
397 B
Text
20 lines
397 B
Text
// TypeScript Version: 3.4
|
|
|
|
import {Plugin} from 'unified'
|
|
|
|
declare namespace remarkFootnotes {
|
|
type Footnotes = Plugin<[RemarkFootnotesOptions?]>
|
|
|
|
interface RemarkFootnotesOptions {
|
|
/**
|
|
* Whether to support `^[inline notes]`
|
|
*
|
|
* @defaultValue false
|
|
*/
|
|
inlineNotes?: boolean
|
|
}
|
|
}
|
|
|
|
declare const remarkFootnotes: remarkFootnotes.Footnotes
|
|
|
|
export = remarkFootnotes
|