Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / organisms / Sidebar / SidebarGroup / SidebarGroupState.d.ts
Size: Mime:
import { SidebarGroup, SidebarItemMapper } from './typings';
import { SidebarItemState } from '../SidebarItem';
export declare class SidebarGroupState implements SidebarGroup {
    private store;
    /**
     * @alias addSidebar
     * @chainable
     */
    add(item: SidebarItemState): this;
    /**
     * @description remove all sidebars
     * @chainable
     */
    clear(): this;
    /**
     * @description iterate over all sidebars
     */
    map(handler: SidebarItemMapper): any[];
}