vant/src/cell/index.ts
2021-03-08 17:14:55 +08:00

9 lines
205 B
TypeScript

import { withInstall } from '../utils';
import _Cell from './Cell';
const Cell = withInstall<typeof _Cell>(_Cell);
export default Cell;
export { Cell };
export type { CellArrowDirection } from './Cell';