knowledgebase_law/node_modules/micromark-extension-gfm-task-list-item/dev/index.d.ts
2025-04-11 11:47:09 -04:00

18 lines
432 B
TypeScript

export {gfmTaskListItemHtml} from './lib/html.js'
export {gfmTaskListItem} from './lib/syntax.js'
/**
* Augment types.
*/
declare module 'micromark-util-types' {
/**
* Token types.
*/
interface TokenTypeMap {
taskListCheck: 'taskListCheck'
taskListCheckMarker: 'taskListCheckMarker'
taskListCheckValueChecked: 'taskListCheckValueChecked'
taskListCheckValueUnchecked: 'taskListCheckValueUnchecked'
}
}