UNPKG

@ribajs/bs5

Version:

Bootstrap 5 module for Riba.js

15 lines (13 loc) 363 B
import { SlideshowSlidePosition } from "./slideshow-slide-position.js"; export interface SlideshowSlide { title?: string; content: string; handle?: string; active: boolean; type?: string; position: SlideshowSlidePosition; class?: string; index: number; /** Optional image source, can be used to append an image dynamically */ src?: string; }