@antv/s2
Version:
effective spreadsheet render core lib
16 lines • 414 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomRect = void 0;
const g_1 = require("@antv/g");
/**
* 自定义 rect 图形
* - 有 appendInfo 属性
*/
class CustomRect extends g_1.Rect {
constructor(options, appendInfo) {
super(options);
this.appendInfo = appendInfo;
}
}
exports.CustomRect = CustomRect;
//# sourceMappingURL=CustomRect.js.map