svelty-material
Version:
Svelte Materialify fork with ts support and updated scss.
25 lines (24 loc) • 795 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string | undefined;
value?: any[] | any;
activeClass?: string | undefined;
multiple?: boolean | undefined;
mandatory?: boolean | undefined;
max?: number | undefined;
style?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type ListItemGroupProps = typeof __propDef.props;
export declare type ListItemGroupEvents = typeof __propDef.events;
export declare type ListItemGroupSlots = typeof __propDef.slots;
export default class ListItemGroup extends SvelteComponentTyped<ListItemGroupProps, ListItemGroupEvents, ListItemGroupSlots> {
}
export {};