svelte-swipeout
Version:
iOS-style swipeable list component for Svelte 5 with delete animations and mobile-optimized touch handling
11 lines (10 loc) • 351 B
TypeScript
import { SvelteComponent } from "svelte";
type $$ComponentProps = {
children: () => SvelteComponent;
overSwipe?: boolean;
onclick?: () => void;
class?: string;
};
declare const SwipeoutAction: import("svelte").Component<$$ComponentProps, {}, "">;
type SwipeoutAction = ReturnType<typeof SwipeoutAction>;
export default SwipeoutAction;