vuepress-plugin-md-enhance
Version:
Markdown enhancement plugin for vuepress
21 lines (18 loc) • 377 B
TypeScript
import { FunctionalComponent } from 'vue';
interface PlaygroundProps {
/**
* Playground title
*
* 演示标题
*/
title?: string;
/**
* Playground link
*
* 演示链接
*/
link: string;
}
declare const Playground: FunctionalComponent<PlaygroundProps>;
export { Playground as default };
export type { PlaygroundProps };