11 lines
442 B
TypeScript
11 lines
442 B
TypeScript
/**
|
|
* Extension for `micromark` that can be passed in `extensions`, to
|
|
* enable GFM task list items syntax.
|
|
*
|
|
* @type {Extension}
|
|
*/
|
|
export const gfmTaskListItem: Extension
|
|
export type Extension = import('micromark-util-types').Extension
|
|
export type State = import('micromark-util-types').State
|
|
export type TokenizeContext = import('micromark-util-types').TokenizeContext
|
|
export type Tokenizer = import('micromark-util-types').Tokenizer
|