svantic
Version:
A set of Fomantic-UI components for Svelte framework
58 lines (57 loc) • 1.46 kB
TypeScript
/** @typedef {typeof __propDef.props} ListProps */
/** @typedef {typeof __propDef.events} ListEvents */
/** @typedef {typeof __propDef.slots} ListSlots */
export default class List extends SvelteComponentTyped<{
link?: boolean;
class?: string;
inverted?: boolean;
style?: {};
aligned?: string;
floated?: string;
bulleted?: boolean;
ordered?: boolean;
horizontal?: boolean;
selection?: boolean;
animated?: boolean;
relaxed?: boolean;
divided?: boolean;
celled?: boolean;
}, {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type ListProps = typeof __propDef.props;
export type ListEvents = typeof __propDef.events;
export type ListSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
link?: boolean;
class?: string;
inverted?: boolean;
style?: {};
aligned?: string;
floated?: string;
bulleted?: boolean;
ordered?: boolean;
horizontal?: boolean;
selection?: boolean;
animated?: boolean;
relaxed?: boolean;
divided?: boolean;
celled?: boolean;
};
events: {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};