| 24 | export type JsonObject = { [member: string]: any }; |
| 25 | |
| 26 | export interface Slice { |
| 27 | slice_id: number; |
| 28 | form_data: { |
| 29 | viz_type: string; |
| 30 | }; |
| 31 | } |
| 32 | |
| 33 | export interface Dashboard { |
| 34 | slices: Slice[]; |
nothing calls this directly
no outgoing calls
no test coverage detected