/** * Configuration of the widget. * This is a base configuration interface that has to be implemented/extended by widgets' own configuration types. */ export interface WidgetConfiguration { /** * Title of the widget. */ title: string; }