UNPKG

go-captcha-vue

Version:

This is the vue package for go-captcha

13 lines (12 loc) 316 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, clear: (fn: Function) => void) => void; }