| 14 | import "./vector_layer_editor"; |
| 15 | |
| 16 | export interface LayerEditorModel { |
| 17 | layer_name: string; |
| 18 | layer_type: string; |
| 19 | children: Array<any>; |
| 20 | |
| 21 | // Band names in the image (if applicable). |
| 22 | band_names: Array<string>; |
| 23 | // Colormaps available to select. |
| 24 | colormaps: Array<string>; |
| 25 | } |
| 26 | |
| 27 | export class LayerEditor extends LitWidget<LayerEditorModel, LayerEditor> { |
| 28 | static get componentName(): string { |
nothing calls this directly
no outgoing calls
no test coverage detected