···11+/**
22+ * change this to your own data structure, that each card will use
33+ * then change the Card.svelte file to use your data structure
44+ */
55+export type CardData = {
66+ title?: string;
77+ description?: string;
88+ image?: string;
99+};
1010+1111+export type SwipeEventData = {
1212+ direction: Direction;
1313+ data: CardData;
1414+ index: number;
1515+ element: HTMLElement;
1616+};
1717+1818+export type Direction = 'left' | 'right';
1919+2020+export { default as CardSwiper } from './CardSwiper.svelte';