npm install --save @types/markdown-it-plantuml
This package contains type definitions for markdown-it-plantuml (https://github.com/gmunguia/markdown-it-plantuml#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/markdown-it-plantuml.
import MarkdownIt = require("markdown-it");
declare namespace markdownItPlantuml {
interface Options {
closeMarker?: string | undefined;
diagramName?: string | undefined;
generateSource?: ((umlCode: string, pluginOptions: Options) => string) | undefined;
imageFormat?: string | undefined;
openMarker?: string | undefined;
render?: MarkdownIt.Renderer.RenderRule | undefined;
server?: string | undefined;
}
}
declare const markdownItPlantuml: MarkdownIt.PluginWithOptions<markdownItPlantuml.Options>;
export = markdownItPlantuml;
- Last updated: Fri, 05 Apr 2024 21:36:06 GMT
- Dependencies: @types/markdown-it
These definitions were written by Gerardo Munguia.