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