@equinor/mad-core
Version:
Core library for the Mobile App Delivery team
16 lines (15 loc) • 851 B
TypeScript
import React from "react";
import { NavigationContainerRef } from "@react-navigation/native";
export declare const NavigationContainer: <T extends object>(props: import("@react-navigation/native").NavigationContainerProps & {
theme?: import("@react-navigation/native").Theme | undefined;
linking?: import("@react-navigation/native").LinkingOptions<T> | undefined;
fallback?: React.ReactNode;
documentTitle?: import("@react-navigation/native").DocumentTitleOptions | undefined;
onReady?: (() => void) | undefined;
} & {
ref?: React.Ref<NavigationContainerRef<T>> | undefined;
} & {
onRouteChange?: ((currentRoute: string, prevRoute: string | undefined) => void) | undefined;
} & {
ref?: React.ForwardedRef<NavigationContainerRef<T>> | undefined;
}) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;