restaurant-menu-challenge - v0.1.0
    Preparing search index...

    Type Alias Menu

    Cardápio completo de um restaurante, composto por seções.

    type Menu = {
        id: number;
        name: string;
        sections: MenuSection[];
    }
    Index

    Properties

    Properties

    id: number
    name: string
    sections: MenuSection[]