UNPKG

go-captcha-svelte

Version:

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

30 lines (29 loc) 983 B
import { SvelteComponent } from "svelte"; import type { RotateConfig, RotateData, RotateEvent } from "../types/rotate"; declare const __propDef: { props: { config?: RotateConfig | undefined; data?: RotateData | undefined; events?: RotateEvent | undefined; clear?: (() => void) | undefined; reset?: (() => void) | undefined; close?: (() => void) | undefined; refresh?: (() => void) | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type RotateProps = typeof __propDef.props; export type RotateEvents = typeof __propDef.events; export type RotateSlots = typeof __propDef.slots; export default class Rotate extends SvelteComponent<RotateProps, RotateEvents, RotateSlots> { get clear(): () => void; get reset(): () => void; get close(): () => void; get refresh(): () => void; } export {};