vue-sidebar-menu
Version:
A Vue.js Sidebar Menu Component
24 lines (23 loc) • 876 B
TypeScript
import type { SidebarItemType } from '../types';
interface Props {
item: SidebarItemType;
level: number;
activeShow?: string;
}
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
"update-active-show": (value: string | undefined) => any;
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
"onUpdate-active-show"?: ((value: string | undefined) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
'dropdown-icon'?: (props: {
isOpen: boolean;
toggle: (event: Event) => void;
}) => any;
}>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};