mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-06 04:43:52 +01:00
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'
|
|
}
|
|
}
|