mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
22bdb0568e
Co-authored-by: Alex Grozav <alex@grozav.com>
16 lines
352 B
TypeScript
16 lines
352 B
TypeScript
declare module 'markdown-it-task-lists' {
|
|
import type { PluginWithOptions } from 'markdown-it';
|
|
|
|
declare namespace markdownItTaskLists {
|
|
interface Config {
|
|
enabled?: boolean;
|
|
label?: boolean;
|
|
labelAfter?: boolean;
|
|
}
|
|
}
|
|
|
|
declare const markdownItTaskLists: PluginWithOptions<markdownItTaskLists.Config>;
|
|
|
|
export = markdownItTaskLists;
|
|
}
|