2021-02-11 21:31:41 +08:00

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>;
}