Backstage
    Preparing search index...

    A collection of nav items that supports picking specific items by ID and retrieving whatever remains. Created fresh for each render.

    interface NavContentNavItems {
        clone(): NavContentNavItems;
        rest(): NavContentNavItem[];
        take(id: string): NavContentNavItem | undefined;
        withComponent(
            Component: ComponentType<NavContentNavItem>,
        ): NavContentNavItemsWithComponent;
    }
    Index

    Methods