| 24 | export const MIME_TYPE = "application/vnd.plotly.v1+json"; |
| 25 | |
| 26 | interface IPlotlySpec { |
| 27 | data: PlotlyType.Data; |
| 28 | layout: PlotlyType.Layout; |
| 29 | frames?: PlotlyType.Frame[]; |
| 30 | } |
| 31 | |
| 32 | export class RenderedPlotly extends Widget implements IRenderMime.IRenderer { |
| 33 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected