svelte-tabs-scrollable
Version:
a simple svelte scrollable tabs with a lot of additional features and with fully supporting of RTL mode
28 lines (27 loc) • 812 B
TypeScript
/** @typedef {typeof __propDef.props} RightArrowBtnProps */
/** @typedef {typeof __propDef.events} RightArrowBtnEvents */
/** @typedef {typeof __propDef.slots} RightArrowBtnSlots */
export default class RightArrowBtn extends SvelteComponentTyped<{
onNavBtnClick: any;
showNavBtns: any;
rightBtnIcon: any;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type RightArrowBtnProps = typeof __propDef.props;
export type RightArrowBtnEvents = typeof __propDef.events;
export type RightArrowBtnSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
onNavBtnClick: any;
showNavBtns: any;
rightBtnIcon: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};