vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
20 lines (15 loc) • 582 B
TypeScript
import type { DefineComponent, VNodeChild } from 'vue';
import type { VueUiSparkTrendConfig, VueUiSparkTrendProps } from 'vue-data-ui';
export type { VueUiSparkTrendConfig, VueUiSparkTrendProps };
declare const VueUiSparkTrendBase: DefineComponent<VueUiSparkTrendProps>;
export const VueUiSparkTrend: typeof VueUiSparkTrendBase & {
new (): {
$slots: {
['chart-background']?: () => VNodeChild;
source?: () => VNodeChild;
skeleton?: () => VNodeChild;
};
};
};
export default VueUiSparkTrend;
export { VueUiSparkTrend };