mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-29 06:40:37 +02:00
18 lines
391 B
TypeScript
18 lines
391 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
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;
|
|
}
|