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

18 lines
432 B
TypeScript
Raw Normal View History

2025-04-11 23:47:09 +08:00
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'
}
}