site/node_modules/micromark-extension-gfm-strikethrough/index.d.ts

12 lines
386 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
export {gfmStrikethroughHtml} from './lib/html.js'
export {gfmStrikethrough, type Options} from './lib/syntax.js'
declare module 'micromark-util-types' {
interface TokenTypeMap {
strikethroughSequence: 'strikethroughSequence'
strikethroughSequenceTemporary: 'strikethroughSequenceTemporary'
strikethrough: 'strikethrough'
strikethroughText: 'strikethroughText'
}
}