UNPKG

vue-testimonials

Version:

Vue Testimonials is a Vue 3 testimonials component made with Vite and TypeScript

22 lines (21 loc) 653 B
export interface Testimonial { readonly title: string; readonly content: string; readonly image: string; readonly imageAlt?: string; readonly author: string; } export declare type VueTestimonialsProps = { interval: number; items: Testimonial[]; arrowColor: string; arrowWidth: number | string; arrowHeight: number | string; ballActiveColorClass?: string | null; ballInactiveColorClass?: string | null; ballWidth: number | string; ballHeight: number | string; titleClasses?: unknown | string; authorClasses?: unknown | string; contentClasses?: unknown | string; };