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