The contextual information provided to a resources function.
resources
interface ResourceContext { params: Signal<Params>; queryParams: Signal<Params>; fragment: Signal<string | null>; data: Signal<Record<string, any>>;}
Signal<Params>
The path and matrix parameters available to the route.
The query parameters of the route.
Signal<string | null>
The URL fragment.
Signal<Record<string, any>>
Data provided in the route configuration.