import { WidgetConfiguration } from './WidgetConfiguration'; /** * Base interface for the widget configuration editing view component to implement. */ export interface WidgetEditComponent { /** * The configuration object of the widget for the component to work with. */ configuration: WidgetConfiguration; }