mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 00:28:15 +08:00
18 lines
432 B
TypeScript
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'
|
||
|
}
|
||
|
}
|