react-native-expo-kanban
Version:
kanban board for react native expo screens
15 lines (14 loc) • 603 B
TypeScript
import type Animated from "react-native-reanimated";
import { type AnimatedRef } from "react-native-reanimated";
interface UseColumnPaginationProps {
columnsHorizontalScrollRef: AnimatedRef<Animated.FlatList<any>>;
constants: {
edgeColumnOff: number;
columnContainerWidth: number;
};
}
export declare const useColumnPagination: ({ columnsHorizontalScrollRef, constants, }: UseColumnPaginationProps) => {
paginate: import("lodash").DebouncedFuncLeading<(to: "left" | "right" | "center") => void>;
updateCurrentColumnIndex: (columnIndex: number) => void;
};
export {};