@antv/g2
Version:
the Grammar of Graphics in Javascript
12 lines • 353 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.extend = extend;
function extend(Runtime, library) {
class Chart extends Runtime {
constructor(options) {
super(Object.assign(Object.assign({}, options), { lib: library }));
}
}
return Chart;
}
//# sourceMappingURL=extend.js.map