jsMain.react.router.PathPattern.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 PathPattern is used to match on some portion of a URL pathname.
*/
external interface PathPattern {
/**
* A string to match against a URL pathname. May contain `:id`-style segments
* to indicate placeholders for dynamic parameters. May also end with `/ *` to
* indicate matching the rest of the URL pathname.
*/
var path: String
/**
* Should be `true` if the static portions of the `path` should be matched in
* the same case.
*/
var caseSensitive: Boolean?
/**
* Should be `true` if this pattern should match the entire URL pathname.
*/
var end: Boolean?
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy