svelty-material
Version:
Svelte Materialify fork with ts support and updated scss.
26 lines (25 loc) • 780 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string | undefined;
dense?: boolean | null | undefined;
disabled?: boolean | undefined;
flat?: boolean | undefined;
rounded?: boolean | undefined;
nav?: boolean | undefined;
outlined?: boolean | undefined;
style?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type ListProps = typeof __propDef.props;
export declare type ListEvents = typeof __propDef.events;
export declare type ListSlots = typeof __propDef.slots;
export default class List extends SvelteComponentTyped<ListProps, ListEvents, ListSlots> {
}
export {};