svantic
Version:
A set of Fomantic-UI components for Svelte framework
50 lines (49 loc) • 1.19 kB
TypeScript
/** @typedef {typeof __propDef.props} StepProps */
/** @typedef {typeof __propDef.events} StepEvents */
/** @typedef {typeof __propDef.slots} StepSlots */
export default class Step extends SvelteComponentTyped<{
icon: any;
ordered: any;
href: any;
link?: boolean;
class?: string;
disabled?: boolean;
style?: {};
active?: boolean;
as?: string;
completed?: boolean;
}, {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type StepProps = typeof __propDef.props;
export type StepEvents = typeof __propDef.events;
export type StepSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
icon: any;
ordered: any;
href: any;
link?: boolean;
class?: string;
disabled?: boolean;
style?: {};
active?: boolean;
as?: string;
completed?: boolean;
};
events: {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};