UNPKG

@metricinsights/concierge

Version:

Metric Insights Concierge Component

16 lines 610 B
import MarkdownIt from 'markdown-it'; import { BaseParser, ParserResponse } from './types'; export interface ElementParserOptions { mdInstance?: MarkdownIt; mdOptions?: MarkdownIt.Options; linkAttributes?: Record<string, string>; } export declare class ElementParser extends BaseParser { readonly id = "element"; private readonly END_MARKER; readonly md: MarkdownIt; constructor(options?: ElementParserOptions); canParse(input: string, currentIndex: number): boolean; parse(input: string, currentIndex: number): ParserResponse; } //# sourceMappingURL=element-parser.d.ts.map