UNPKG

go-captcha-vue

Version:

This is the vue package for go-captcha

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