UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

9 lines (8 loc) 297 B
import { Mark, MarkComponent as MC } from '../runtime'; import { RangeMark } from '../spec'; export declare function AbstractRange(options?: { extendX?: boolean; extendY?: boolean; }): Mark; export type RangeOptions = Omit<RangeMark, 'type'>; export declare const Range: MC<RangeOptions>;