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    
Size: Mime:
import { ISidebarGroup, SidebarItemMapper } from './typings';
import { SidebarItemState } from '../SidebarItem';
export declare class SidebarGroupState implements ISidebarGroup {
    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[];
}