UNPKG

nuxt-schema-org

Version:

The quickest and easiest way to build Schema.org graphs for Nuxt.

10 lines (9 loc) 272 B
import type { ModuleOptions } from '../module.js'; export type ModuleRuntimeConfig = Pick<ModuleOptions, 'scriptAttributes' | 'reactive' | 'minify' | 'identity'> & { version: string; }; export interface UnheadAugmentation<T> { script: { nodes: T; }; }