9 lines
351 B
TypeScript
9 lines
351 B
TypeScript
import { ContainerOptions } from './markdown-it-container';
|
|
export declare type RenderPlaceFunction = (info: string) => string;
|
|
export interface ContainerPluginOptions extends ContainerOptions {
|
|
before?: string | RenderPlaceFunction;
|
|
after?: string | RenderPlaceFunction;
|
|
type: string;
|
|
defaultTitle: string | Record<string, string>;
|
|
}
|