UNPKG

svelty-material

Version:

Svelte Materialify fork with ts support and updated scss.

24 lines (23 loc) 658 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; value?: number | undefined; activeClass?: string | undefined; disabled?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export declare type TabProps = typeof __propDef.props; export declare type TabEvents = typeof __propDef.events; export declare type TabSlots = typeof __propDef.slots; export default class Tab extends SvelteComponentTyped<TabProps, TabEvents, TabSlots> { } export {};