UNPKG

vuepress-plugin-md-enhance

Version:
21 lines (18 loc) 377 B
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 };