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

    Interface SubCategory

    Represents a secondary grouping within a main category (Level 2). Can optionally contain a background image for rich UI displays and a list of specific SubItems. *

    interface SubCategory {
        image?: string;
        items?: SubItem[];
        name: string;
    }
    Index

    Properties

    Properties

    image?: string

    Optional URL path to a background image used when this subcategory is active.

    items?: SubItem[]

    Optional array of Level 3 items belonging to this subcategory.

    name: string

    The display name of the subcategory (e.g., "Fruits and vegetables").