UNPKG

svelte-swipeout

Version:

iOS-style swipeable list component for Svelte 5 with delete animations and mobile-optimized touch handling

10 lines (9 loc) 346 B
export declare function closeSwipeout(swipeoutEl: HTMLElement): void; export declare function closeAll(): void; declare const SwipeoutItem: import("svelte").Component<{ children: any; delete?: boolean; onDelete?: any; } & Record<string, any>, {}, "">; type SwipeoutItem = ReturnType<typeof SwipeoutItem>; export default SwipeoutItem;