import { IDataSourceType } from "@gooddata/sdk-backend-tiger"; export interface ISupportedDataSourceItem { linkClassName: string; dataSourceName: string; dataSourceType: IDataSourceType; icon: string; isRecommended: boolean; isBeta?: boolean; isExperimental?: boolean; } export interface IDataSourcesSection { sectionName: string; dataSourcesList: ISupportedDataSourceItem[]; }