import { DaffRouteWithSeoData } from '@daffodil/seo/router'
An interface that extends Angular's Route to include support for seo structures. This helps add route-specific metadata for SEO and search engines.
interface DaffRouteWithSeoData<T> {
data: { daffSeoData?: { canonical_url?: string; meta_description?: string; title?: string; schema?: Schema<T>; }; }
}