
jsMain.react.router.PathMatch.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 PathMatch contains info about how a PathPattern matched on a URL pathname.
*/
external interface PathMatch {
/**
* 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 pattern that was used to match.
*/
var pattern: PathPattern
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy