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

jsMain.history.Path.kt Maven / Gradle / Ivy

The newest version!
// Automatically generated - do not modify!

package history

/**
 * The pathname, search, and hash values of a URL.
 */
external interface Path {
    /**
     * A URL pathname, beginning with a /.
     *
     * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#location.pathname
     */
    var pathname: Pathname

    /**
     * A URL search string, beginning with a ?.
     *
     * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#location.search
     */
    var search: Search

    /**
     * A URL fragment identifier, beginning with a #.
     *
     * @see https://github.com/remix-run/history/tree/main/docs/api-reference.md#location.hash
     */
    var hash: Hash
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy