@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
10 lines (9 loc) • 325 B
TypeScript
/// <reference types="react" />
import { SwipeCellProps } from "./swipe-cell";
import SwipeCellActions from "./swipe-cell-actions";
interface SwipeCellInterface {
(props: SwipeCellProps): JSX.Element;
Actions: typeof SwipeCellActions;
}
declare const SwipeCell: SwipeCellInterface;
export default SwipeCell;