A table mapping route keys to the parameters they accept.
import type { RouteParameters } from "react-native-app-helpers";
const routeParameters: RouteParameters = {
routeAKey: {
routeAParameterKey: `Route A Parameter Value`,
},
routeBKey: {
routeBParameterKey: `Route B Parameter Value`,
},
routeCKey: {
routeCParameterKey: `Route C Parameter Value`,
},
};