import type { Resolver } from '..' import type { PromiseType } from '../../../typings' import type { StoreProduct } from './product' export type Root = PromiseType> & { titleTemplate?: string } export const StoreSeo: Record> = { title: ({ title }) => title ?? '', description: ({ description }) => description ?? '', canonical: ({ canonical }) => canonical ?? '', titleTemplate: () => '', }