/** * This class is mainly for illustrative purpose, i.e., how the rendering * would be performed in the most straightforward, unoptimized way. * * @typedef {import("../view.js").default} View */ export default class SimpleViewRenderingContext extends ViewRenderingContext { /** @type {import("../layout/rectangle.js").default} */ coords: import("../layout/rectangle.js").default; /** @type {Set} */ views: Set; } /** * This class is mainly for illustrative purpose, i.e., how the rendering * would be performed in the most straightforward, unoptimized way. */ export type View = import("../view.js").default; import ViewRenderingContext from "./viewRenderingContext.js"; //# sourceMappingURL=simpleViewRenderingContext.d.ts.map