svelty-material
Version:
Svelte Materialify fork with ts support and updated scss.
20 lines (19 loc) • 588 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string | undefined;
style?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type TabContentProps = typeof __propDef.props;
export declare type TabContentEvents = typeof __propDef.events;
export declare type TabContentSlots = typeof __propDef.slots;
export default class TabContent extends SvelteComponentTyped<TabContentProps, TabContentEvents, TabContentSlots> {
}
export {};