IndexRouteObject
interface IndexRouteObject {
action?: AgnosticIndexRouteObject["action"];
caseSensitive?: AgnosticIndexRouteObject["caseSensitive"];
children?: undefined;
Component?: React.ComponentType | null;
element?: React.ReactNode | null;
ErrorBoundary?: React.ComponentType | null;
errorElement?: React.ReactNode | null;
handle?: AgnosticIndexRouteObject["handle"];
hasErrorBoundary?: AgnosticIndexRouteObject["hasErrorBoundary"];
id?: AgnosticIndexRouteObject["id"];
index: true;
lazy?: LazyRouteFunction<IndexRouteObject>;
loader?: AgnosticIndexRouteObject["loader"];
path?: AgnosticIndexRouteObject["path"];
shouldRevalidate?: AgnosticIndexRouteObject["shouldRevalidate"];
}