12 lines
386 B
TypeScript
12 lines
386 B
TypeScript
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'
|
|
}
|
|
}
|