go-captcha-svelte
Version:
GoCaptcha for Svelte, which implements click mode, slider mode, drag-drop mode and rotation mode.
24 lines (23 loc) • 759 B
TypeScript
import { SvelteComponent } from "svelte";
import type { ButtonConfig, ButtonType } from "../types/button";
declare const __propDef: {
props: {
title?: string | undefined;
type?: ButtonType | undefined;
disabled?: boolean | undefined;
config?: ButtonConfig | undefined;
clickEvent?: Function | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
exports?: {} | undefined;
bindings?: string | undefined;
};
export type ButtonProps = typeof __propDef.props;
export type ButtonEvents = typeof __propDef.events;
export type ButtonSlots = typeof __propDef.slots;
export default class Button extends SvelteComponent<ButtonProps, ButtonEvents, ButtonSlots> {
}
export {};