UNPKG

react-native-draggable-masonry-grid

Version:

React native flatlist based implementation of masonary grid with drag/drop functionality

12 lines 572 B
import React from 'react'; import type { DraggableMasonryGridListProps, DraggableMasonryGridListRef } from './types'; /** * Notes: * - Does not support sticky headers yet */ declare function GridList<T>(props: DraggableMasonryGridListProps<T>, ref: React.Ref<DraggableMasonryGridListRef>): import("react/jsx-runtime").JSX.Element; export declare const DraggableMasonryGridList: <T>(props: DraggableMasonryGridListProps<T> & { ref?: React.ForwardedRef<DraggableMasonryGridListRef>; }) => ReturnType<typeof GridList>; export {}; //# sourceMappingURL=GridList.d.ts.map