Blame view

src/components/Verify/index.ts 276 Bytes
vben authored
1
2
3
import BasicDragVerify from './src/DragVerify';
import RotateDragVerify from './src/ImgRotate';
import { withInstall } from '../util';
陈文彬 authored
4
5

export * from './src/types';
vben authored
6
7
8
9

export { RotateDragVerify, BasicDragVerify };

export default withInstall(RotateDragVerify, BasicDragVerify);