svelte-loading-spinners
Version:
Loading spinners using the svelte framework.
21 lines (20 loc) • 695 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
color?: string | undefined;
unit?: string | undefined;
duration?: string | undefined;
size?: string | number | undefined;
pause?: boolean | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type DoubleBounceProps = typeof __propDef.props;
export declare type DoubleBounceEvents = typeof __propDef.events;
export declare type DoubleBounceSlots = typeof __propDef.slots;
export default class DoubleBounce extends SvelteComponentTyped<DoubleBounceProps, DoubleBounceEvents, DoubleBounceSlots> {
}
export {};