Lager - v5.2.0
    Preparing search index...

    Variable NavigationPathKeysConst

    NavigationPathKeys: {
        Auth: {
            AuthScreen: string;
            key: string;
            Login: string;
            RegisterUser: string;
            title: string;
        };
        Delivery: {
            DeliveriesList: string;
            DeliveriesScreen: string;
            DeliveryForm: string;
            DeliverySpecification: string;
            key: string;
            title: string;
        };
        Home: { Home: string; HomeScreen: string; key: string; title: string };
        Invoices: {
            InvoiceForm: string;
            InvoicesList: string;
            InvoiceSpecification: string;
            InvoicesScreen: string;
            key: string;
            title: string;
        };
        Orders: {
            key: string;
            OrderItem: string;
            OrdersList: string;
            OrdersScreen: string;
            title: string;
        };
        Products: {
            key: string;
            ProductItem: string;
            ProductsList: string;
            ProductsScreen: string;
            title: string;
        };
    } = ...

    NavigationPathKeys

    This constant defines the navigation keys for various screens in the application. It is organized into namespaces for different sections of the application, such as authentication, deliveries, home, invoices, orders, and products.

    Type declaration

    • NamespaceAuth: {
          AuthScreen: string;
          key: string;
          Login: string;
          RegisterUser: string;
          title: string;
      }

      Auth Navigation keys for authentication-related screens.

    • NamespaceDelivery: {
          DeliveriesList: string;
          DeliveriesScreen: string;
          DeliveryForm: string;
          DeliverySpecification: string;
          key: string;
          title: string;
      }

      Delivery Navigation keys for delivery-related screens.

    • NamespaceHome: { Home: string; HomeScreen: string; key: string; title: string }

      Home Navigation keys for home-related screens.

    • NamespaceInvoices: {
          InvoiceForm: string;
          InvoicesList: string;
          InvoiceSpecification: string;
          InvoicesScreen: string;
          key: string;
          title: string;
      }

      Invoices Navigation keys for invoice-related screens.

    • NamespaceOrders: {
          key: string;
          OrderItem: string;
          OrdersList: string;
          OrdersScreen: string;
          title: string;
      }

      Orders Navigation keys for order-related screens.

    • NamespaceProducts: {
          key: string;
          ProductItem: string;
          ProductsList: string;
          ProductsScreen: string;
          title: string;
      }

      Products Navigation keys for product-related screens.