@prezly/theme-kit-nextjs
Version:
Data layer and utility library for developing Prezly themes with NextJS
11 lines (10 loc) • 371 B
TypeScript
import type { Metadata } from 'next';
import type { Prerequisites } from './types';
type Params = Prerequisites & {
indexable?: boolean;
};
export declare function generateRootMetadata({ locale, indexable, ...resolvable }: Params, ...metadata: Metadata[]): Promise<Metadata>;
export declare namespace generateRootMetadata {
type Parameters = Params;
}
export {};