@analogjs/platform
Version:
The fullstack meta-framework for Angular
11 lines (10 loc) • 446 B
TypeScript
import { marked } from 'marked';
import { MarkedContentHighlighter } from './marked-content-highlighter.js';
import { WithMarkedOptions } from './index.js';
export declare class MarkedSetupService {
private readonly options?;
private readonly highlighter?;
private readonly marked;
constructor(options?: WithMarkedOptions | undefined, highlighter?: MarkedContentHighlighter | undefined);
getMarkedInstance(): typeof marked;
}