1 | import 'react';
|
2 | import { TinyAreaOptions as Options } from '@antv/g2plot/lib/plots/tiny-area';
|
3 | import { BasePlotOptions } from '../createPlot';
|
4 | type Opt = Omit<Options, 'data'>;
|
5 | export interface TinyAreaOptions extends Opt, BasePlotOptions {
|
6 | data: number[] | Record<string, any>[];
|
7 | /** yField旧版g2Plot api,即将废弃请查看最新文档 */
|
8 | yField?: string;
|
9 | /** xField旧版g2Plot api,即将废弃请查看最新文档 */
|
10 | xField?: string;
|
11 | }
|
12 | declare const _default: import("react").ForwardRefExoticComponent<TinyAreaOptions & import("react").RefAttributes<any>>;
|
13 | export default _default;
|