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) • 803 B
TypeScript
/** @typedef {typeof __propDef.props} LeftArrowBtnProps */
/** @typedef {typeof __propDef.events} LeftArrowBtnEvents */
/** @typedef {typeof __propDef.slots} LeftArrowBtnSlots */
export default class LeftArrowBtn extends SvelteComponentTyped<{
onNavBtnClick: any;
showNavBtns: any;
leftBtnIcon: any;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type LeftArrowBtnProps = typeof __propDef.props;
export type LeftArrowBtnEvents = typeof __propDef.events;
export type LeftArrowBtnSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
onNavBtnClick: any;
showNavBtns: any;
leftBtnIcon: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};