UNPKG

@npmstuff/argdown-core

Version:

A pluggable parser for the Argdown argumentation syntax

12 lines (11 loc) 438 B
import { IArgdownPlugin, IRequestHandler } from "../IArgdownPlugin"; import { IArgdownRequest } from ".."; import { IVizJsSettings } from "./VizJsSettings"; export declare class SyncDotToSvgExportPlugin implements IArgdownPlugin { name: string; defaults: IVizJsSettings; constructor(config?: IVizJsSettings); getSettings(request: IArgdownRequest): IVizJsSettings; prepare: IRequestHandler; run: IRequestHandler; }