UNPKG

go-captcha-vue

Version:

GoCaptcha for Vue, which implements click mode, slider mode, drag-drop mode and rotation mode.

13 lines (12 loc) 322 B
/** * @Author Awen * @Date 2024/06/01 * @Email wengaolng@gmail.com **/ import type { SlideRegionPoint } from "./data"; export interface SlideRegionEvent { move?: (x: number, y: number) => void; refresh?: () => void; close?: () => void; confirm?: (point: SlideRegionPoint, reset: () => void) => void; }