| 5 | import { specs, types, VegaDeckGl, Viewer } from '@msrvida/sanddance'; |
| 6 | |
| 7 | export interface Props { |
| 8 | viewerOptions?: Partial<types.ViewerOptions>; |
| 9 | insight: specs.Insight; |
| 10 | data: object[]; |
| 11 | renderOptions?: types.RenderOptions; |
| 12 | onView?: (renderResult: types.RenderResult) => void; |
| 13 | onError?: (error: any) => void; |
| 14 | onMount?: (element: HTMLElement) => boolean | void; |
| 15 | } |
| 16 | |
| 17 | export interface State { |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected