Renderer
Defined in: packages/core/src/render/renderer.ts:13
Internal
A layer declares what to draw; the renderer decides SVG vs Canvas (PRD §8.1).
svgRenderer (the SVG implementation of this interface) is
internal building-block surface, not a supported public consumption path
— see the note on svgRenderer in render/svg/render-scene.ts (resolves
issue #6). canvasRenderer for heatmaps is unaffected: @pitchkit/react's
<Heatmap> calls into it directly and it remains fully supported.
Type Parameters
| Type Parameter |
|---|
TOutput |
Methods
render()
render(scene): TOutput;
Defined in: packages/core/src/render/renderer.ts:14
Parameters
| Parameter | Type |
|---|---|
scene | Scene |
Returns
TOutput