import { IPSChartCoordinateSystem } from './ipschart-coordinate-system'; import { IPSChartSingle } from './ipschart-single'; /** * * 继承父接口类型值[SINGLE] * @export * @interface IPSChartCoordinateSystemSingle */ export interface IPSChartCoordinateSystemSingle extends IPSChartCoordinateSystem { /** * 单坐标系界面对象 * * @type {IPSChartSingle} */ getPSChartSingle(): IPSChartSingle | null; /** * 单坐标系界面对象 * * @type {IPSChartSingle} */ get psChartSingle(): IPSChartSingle | null; /** * 单坐标系界面对象(必须存在) * * @type {IPSChartSingle} */ getPSChartSingleMust(): IPSChartSingle; }