UNPKG

studiocms

Version:

Astro Native CMS for AstroDB. Built from the ground up by the Astro community.

19 lines (18 loc) 644 B
import type { AstroGlobalPartial } from 'astro'; /** * Default Head Tags for use with createHead() helper * * @param title * @param description * @param lang * @param Astro * @param favicon * @param ogImage * @param canonical * @returns */ export declare const headDefaults: (title: string, description: string, lang: string, Astro: AstroGlobalPartial, favicon: string, ogImage: string | undefined, canonical: URL | undefined) => { tag: "title" | "base" | "link" | "style" | "meta" | "script" | "noscript" | "template"; attrs?: Record<string, string | boolean | undefined> | undefined; content?: string | undefined; }[];