UNPKG

go-captcha-vue

Version:

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

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