GitHub

DaffRouteWithSeoData

import { DaffRouteWithSeoData } from '@daffodil/external-router'

A type that describes the special data that Daffodil will store for SEO purposes on an external resolved route.

type DaffRouteWithSeoData = Route & {
    data: Record<string, any> & {
        daffSeoData: DaffRouteData;
    };
}