UNPKG

markdown-it-tasks

Version:

Create Task lists with Markdown

17 lines (15 loc) 359 B
export interface Options { enabled?: boolean; label?: boolean; labelAfter?: boolean; labelBefore?: boolean; containerClass?: string; itemClass?: string; labelClass?: string; inputClass?: string; } // TODO: Replace with actual types export type Token = any; export type MarkdownIt = any; export type StateToken = any; export type State = any;