Urara-Blog/node_modules/.pnpm-store/v3/files/a9/99c751e30b8d33579521dc77acb25eef3e81314ad48ecf588641f7d977d39f1c9731cad42c885165df5ead81fa8f4063fc1f1f1d830fc6c44c67bc0a22b23d
2022-08-14 01:14:53 +08:00

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