UNPKG

@antv/g2plot

Version:

G2 Plot, a market of plots built with the Grammar of Graphics'

13 lines (12 loc) 507 B
import { LayerConfig } from '../../base/layer'; import TinyLayer, { TinyViewConfig } from '../tiny-layer'; export declare type TinyLineViewConfig = TinyViewConfig; export interface TinyLineLayerConfig extends TinyLineViewConfig, LayerConfig { } export default class TinyLineLayer extends TinyLayer<TinyLineLayerConfig> { line: any; type: string; protected geometryParser(dim: string, type: string): string; protected addGeometry(): void; protected parseEvents(eventParser: any): void; }