UNPKG

@solfacil/girassol

Version:
15 lines (14 loc) 343 B
import type { NuxtLinkResolved } from "@/types"; export type Item = { href: string; text: string; target?: '_blank' | '_self' | '_parent' | '_top'; rel?: string; }; export interface Breadcrumb { id: string; items?: Item[]; gtmId?: string; linkTag?: 'a' | 'router-link' | NuxtLinkResolved; dark?: boolean; }