duoyun-ui
Version:
A lightweight desktop UI component library, implemented using Gem
18 lines (17 loc) • 743 B
TypeScript
import { HTMLAttributes, RefAttributes } from 'react';
import { ForwardRefExoticComponent } from 'react';
import { DuoyunScatterChartElement } from '../elements/scatter-chart';
export * from '../elements/scatter-chart';
export type DyScatterChartProps = HTMLAttributes<HTMLDivElement> & RefAttributes<DuoyunScatterChartElement> & {
sequences?: DuoyunScatterChartElement['sequences'];
};
export type DyScatterChartExpose = {};
declare global {
namespace JSX {
interface IntrinsicElements {
'dy-scatter-chart': DyScatterChartProps;
}
}
}
export declare const DyScatterChart: ForwardRefExoticComponent<Omit<DyScatterChartProps, "ref"> & RefAttributes<DyScatterChartExpose>>;
export default DyScatterChart;