kjelsrud.dev/node_modules/mdast-util-gfm-strikethrough/lib/index.d.ts
2023-07-19 21:31:30 +02:00

19 lines
856 B
TypeScript

/**
* Extension for `mdast-util-from-markdown` to enable GFM strikethrough.
*
* @type {FromMarkdownExtension}
*/
export const gfmStrikethroughFromMarkdown: FromMarkdownExtension
/**
* Extension for `mdast-util-to-markdown` to enable GFM strikethrough.
*
* @type {ToMarkdownExtension}
*/
export const gfmStrikethroughToMarkdown: ToMarkdownExtension
export type Delete = import('mdast').Delete
export type CompileContext = import('mdast-util-from-markdown').CompileContext
export type FromMarkdownExtension = import('mdast-util-from-markdown').Extension
export type FromMarkdownHandle = import('mdast-util-from-markdown').Handle
export type ConstructName = import('mdast-util-to-markdown').ConstructName
export type ToMarkdownExtension = import('mdast-util-to-markdown').Options
export type ToMarkdownHandle = import('mdast-util-to-markdown').Handle