Documentation

type NavigationContext​.NavigationMode

Type definition for an object supported by app.navigate() and NavigationContext.navigateAsync() that indicates how a new location should be applied.

type NavigationMode = {
back?: boolean;
replace?: boolean | "prefix";
prefix?: string;
};

Notes

Related