All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsMain.react.router.PathMatch.kt Maven / Gradle / Ivy

There is a newer version: 6.3.0-pre.506-compat
Show newest version
// 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