fuc-new/doc/node_modules/@vuepress/plugin-markdown-chart/lib/client/components/FlowChart.d.ts
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

47 lines
1.1 KiB
TypeScript

import * as vue from 'vue';
import { PropType, VNode } from 'vue';
declare const _default: vue.DefineComponent<vue.ExtractPropTypes<{
/**
* Flowchart code content
*
* 流程图代码内容
*/
code: {
type: StringConstructor;
required: true;
};
/**
* Flowchart preset
*
* 流程图预设
*/
preset: {
type: PropType<"ant" | "pie" | "vue">;
default: string;
};
}>, () => (VNode | null)[], {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
/**
* Flowchart code content
*
* 流程图代码内容
*/
code: {
type: StringConstructor;
required: true;
};
/**
* Flowchart preset
*
* 流程图预设
*/
preset: {
type: PropType<"ant" | "pie" | "vue">;
default: string;
};
}>> & Readonly<{}>, {
preset: "ant" | "pie" | "vue";
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
export { _default as default };