export interface Catalog { id?: string; title?: string; url?: string; type?: string; regFilters?: Array; } export interface CatalogServiceOptions { baseLayers?: boolean; sources?: Catalog[]; }