svelty-material
Version:
Svelte Materialify fork with ts support and updated scss.
35 lines (34 loc) • 1.03 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string | undefined;
activeClass?: any;
value?: any;
active?: boolean | undefined;
dense?: boolean | undefined;
disabled?: boolean | undefined;
multiline?: boolean | undefined;
link?: string | undefined;
selectable?: boolean | undefined;
ripple?: string | false | undefined;
style?: string | undefined;
};
events: {
click: MouseEvent;
dblclick: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
prepend: {};
default: {};
subtitle: {};
append: {};
};
};
export declare type ListItemProps = typeof __propDef.props;
export declare type ListItemEvents = typeof __propDef.events;
export declare type ListItemSlots = typeof __propDef.slots;
export default class ListItem extends SvelteComponentTyped<ListItemProps, ListItemEvents, ListItemSlots> {
}
export {};