vuepress-plugin-md-enhance
Version:
Markdown enhancement plugin for vuepress
77 lines (74 loc) • 1.48 kB
TypeScript
import * as vue from 'vue';
import { PropType, VNode } from 'vue';
declare const _default: vue.DefineComponent<vue.ExtractPropTypes<{
/**
* ECharts config
*
* 图表配置
*/
config: {
type: StringConstructor;
required: true;
};
/**
* Chart id
*
* 图表 id
*/
id: {
type: StringConstructor;
required: true;
};
/**
* Chart title
*
* 图表标题
*/
title: StringConstructor;
/**
* Chart config type
*
* 图表配置类型
*/
type: {
type: PropType<"js" | "json">;
default: string;
};
}>, () => (VNode | null)[], {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
/**
* ECharts config
*
* 图表配置
*/
config: {
type: StringConstructor;
required: true;
};
/**
* Chart id
*
* 图表 id
*/
id: {
type: StringConstructor;
required: true;
};
/**
* Chart title
*
* 图表标题
*/
title: StringConstructor;
/**
* Chart config type
*
* 图表配置类型
*/
type: {
type: PropType<"js" | "json">;
default: string;
};
}>> & Readonly<{}>, {
type: "js" | "json";
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
export { _default as default };