@type {import('anywidget/types').Initialize }
(ctx)
| 2063 | return { |
| 2064 | /** @type {import('anywidget/types').Initialize<Model>} */ |
| 2065 | initialize(ctx) { |
| 2066 | model = new FigureModel(ctx.model, serializers); |
| 2067 | model.initialize(); |
| 2068 | }, |
| 2069 | /** @type {import('anywidget/types').Render<Model>} */ |
| 2070 | render({ el }) { |
| 2071 | const view = new FigureView(model, el); |
nothing calls this directly
no test coverage detected