jsMain.react.router.RouteMatch.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-react-router-dom-legacy-js
Show all versions of kotlin-react-router-dom-legacy-js
Kotlin wrapper for React Router DOM library
// Automatically generated - do not modify!
package react.router
/**
* A RouteMatch contains info about how a route matched a URL.
*/
external interface RouteMatch {
/**
* The names and values of dynamic parameters in the URL.
*/
var params: Params
/**
* The portion of the URL pathname that was matched.
*/
var pathname: String
/**
* The portion of the URL pathname that was matched before child routes.
*/
var pathnameBase: String
/**
* The route object that was used to match.
*/
var route: RouteObject
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy