Files
vant/src/swipe-cell/index.ts
T

13 lines
281 B
TypeScript

import { withInstall } from '../utils';
import _SwipeCell from './SwipeCell';
const SwipeCell = withInstall<typeof _SwipeCell>(_SwipeCell);
export default SwipeCell;
export { SwipeCell };
export type {
SwipeCellSide,
SwipeCellPosition,
SwipeCellInstance,
} from './types';