import { Color } from '@ionic/core'; /** * Props for val-href component. * * @property url - The URL to open. * @property token - Optional token for event identification. * @property text - The link text. * @property color - The link color (Ionic color string). * @property download - Whether to trigger a download (optional). * @property hoverable - Whether the link is hoverable (optional). */ export type HrefMetadata = { url: string; token: string; text: string; color: Color; download: boolean; hoverable: boolean; target?: string; };