jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
11 lines (10 loc) • 404 B
TypeScript
import React from 'react';
import type { RendererProps } from 'jamis-core';
import type { SparkLineSchema } from '../types';
interface SparkLineRendProps extends RendererProps, Omit<SparkLineSchema, 'type' | 'className'> {
}
export declare class SparkLineRenderer extends React.Component<SparkLineRendProps> {
handleClick(e: React.MouseEvent, ctx: any): void;
render(): JSX.Element;
}
export {};