uni-echarts
Version:
🪀 适用于 uni-app 的 Apache ECharts 组件(仅支持Vue 3)
19 lines (16 loc) • 416 B
TypeScript
/* eslint-disable ts/no-empty-object-type */
import type { DefineComponent } from "vue";
import type { AllowedComponentProps } from "../../shared-core";
import type { UniEchartsEmits, UniEchartsProps } from "./types";
type UniEcharts = DefineComponent<
AllowedComponentProps & UniEchartsProps,
{},
{},
{},
{},
{},
{},
UniEchartsEmits
>;
declare const _default: UniEcharts;
export default _default;