UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

14 lines (13 loc) 417 B
/// <reference types="react" /> import { SidebarProps } from "./sidebar"; import SidebarTab from "./sidebar-tab"; import { SidebarTabObject } from "./sidebar-tab.shared"; interface SidebarInterface { (props: SidebarProps): JSX.Element; Tab: typeof SidebarTab; } declare const Sidebar: SidebarInterface; declare namespace Sidebar { type TabObject = SidebarTabObject; } export default Sidebar;