You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
parttimejob/node_modules/zrender/lib/all.js

8 lines
277 B

export * from './zrender.js';
export * from './export.js';
import { registerPainter } from './zrender.js';
import CanvasPainter from './canvas/Painter.js';
import SVGPainter from './svg/Painter.js';
registerPainter('canvas', CanvasPainter);
registerPainter('svg', SVGPainter);