svelte-tabs-scrollable
Version:
a simple svelte scrollable tabs with a lot of additional features and with fully supporting of RTL mode
32 lines (31 loc) • 766 B
TypeScript
/** @typedef {typeof __propDef.props} TabProps */
/** @typedef {typeof __propDef.events} TabEvents */
/** @typedef {typeof __propDef.slots} TabSlots */
export default class Tab extends SvelteComponentTyped<{
tabClassName?: string;
as?: any;
asProps?: {};
}, {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type TabProps = typeof __propDef.props;
export type TabEvents = typeof __propDef.events;
export type TabSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
tabClassName?: string;
as?: any;
asProps?: {};
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};