import type { Resolver } from '..' export type Root = { title?: string; description?: string; canonical?: string } export const StoreSeo: Record> = { title: ({ title }) => title ?? '', description: ({ description }) => description ?? '', canonical: ({ canonical }) => canonical ?? '', titleTemplate: () => '', }