site/node_modules/micromark-extension-gfm-task-list-item/index.d.ts

13 lines
453 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
export {gfmTaskListItemHtml} from './lib/html.js'
export {gfmTaskListItem} from './lib/syntax.js'
declare module 'micromark-util-types' {
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
interface TokenTypeMap {
taskListCheck: 'taskListCheck'
taskListCheckMarker: 'taskListCheckMarker'
taskListCheckValueChecked: 'taskListCheckValueChecked'
taskListCheckValueUnchecked: 'taskListCheckValueUnchecked'
}
}