/** * A trivial proof-of-concept SVG rendering context. Doesn't render any * marks at this point, only placeholders. * * @typedef {import("../view.js").default} View */ export default class SvgViewRenderingContext extends ViewRenderingContext { /** @type {import("../layout/rectangle.js").default} */ coords: import("../layout/rectangle.js").default; svg: SVGSVGElement; /** @type {SVGElement[]} */ nodeStack: SVGElement[]; getSvg(): SVGSVGElement; get _currentNode(): SVGElement; } /** * A trivial proof-of-concept SVG rendering context. Doesn't render any * marks at this point, only placeholders. */ export type View = import("../view.js").default; import ViewRenderingContext from "./viewRenderingContext.js"; //# sourceMappingURL=svgViewRenderingContext.d.ts.map