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

jsMain.react.router.PathPattern.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 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