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.

18 lines (16 loc) 307 B
export interface IData { href: string; caption?: string; index?: number; } export type Component = { data: IData[]; index?: number; timer?: number; id?: string; style?: string; }; export type Events = { changeSlide: { index: number }; changeHover: { index: number; hover: boolean }; };