import { Graph, IPoint } from "./core"; export declare interface CoordinateSetup { /** * 坐标原点位置 */ readonly o: IPoint; /** * 坐标系宽度 */ readonly width: number; /** * 坐标系高度 */ readonly height: number; /** * 坐标颜色 */ readonly color?: string; } export default class Coordinate extends Graph { readonly setup: CoordinateSetup; constructor(setup: CoordinateSetup); draw(): SVGElement; }