go-captcha-svelte
Version:
GoCaptcha for Svelte, which implements click mode, slider mode, drag-drop mode and rotation mode.
22 lines (21 loc) • 656 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
width?: number | undefined;
height?: number | undefined;
clickEvent?: Function | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
exports?: undefined;
bindings?: undefined;
};
export type LoadingIconProps = typeof __propDef.props;
export type LoadingIconEvents = typeof __propDef.events;
export type LoadingIconSlots = typeof __propDef.slots;
export default class LoadingIcon extends SvelteComponent<LoadingIconProps, LoadingIconEvents, LoadingIconSlots> {
}
export {};