UNPKG

@htmlbricks/hb-bundle

Version:

Single IIFE loader for all HTML Bricks hb-* web components from the jsDelivr CDN, with optional Subresource Integrity; includes agent/LLM docs and theme CSS variables.

23 lines (20 loc) 345 B
export type Data = { href: string; caption?: string; index?: number; externalLink?: string; link?: string; key?: string; duration?: string; }; export type Component = { id?: string; style?: string; data: Data[]; slide?: number; type?: "images" | "videos"; size?: number; }; export type Events = { slideClick: { key: string }; };