Dankoss Docs - v0.1.0
    Preparing search index...

    Interface Category

    Represents the top-level navigation categories (Level 1). These are usually the main tabs presented in the root of the dropdown menu. *

    interface Category {
        name: string;
        subcategories: SubCategory[];
    }
    Index

    Properties

    Properties

    name: string

    The main category name (e.g., "Products", "Recipes").

    subcategories: SubCategory[]

    An array of Level 2 groupings belonging to this category.