UNPKG

351 BTypeScriptView Raw
1import { ContainerOptions } from './markdown-it-container';
2export declare type RenderPlaceFunction = (info: string) => string;
3export interface ContainerPluginOptions extends ContainerOptions {
4 before?: string | RenderPlaceFunction;
5 after?: string | RenderPlaceFunction;
6 type: string;
7 defaultTitle: string | Record<string, string>;
8}