Files
n8n_Demo/n8n-n8n-1.109.2/packages/frontend/@n8n/chat/src/env.d.ts
2025-09-08 04:48:28 +08:00

25 lines
568 B
TypeScript
Executable File

/// <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;
}
declare module '~icons/*' {
import type { FunctionalComponent, SVGAttributes } from 'vue';
const component: FunctionalComponent<SVGAttributes>;
export default component;
}