site/node_modules/micromark-extension-gfm-task-list-item/dev/index.d.ts
2024-10-14 08:09:33 +02:00

13 lines
453 B
TypeScript

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'
}
}