Blame view

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

export * from './src/types';
vben authored
6
7
8
export const RotateDragVerify = withInstall(RotateDragVerifyLib);
export const BasicDragVerify = withInstall(BasicDragVerifyLib);