AngularTS
    Preparing search index...

    Interface UrlParts

    Represents the individual components of a URL.

    interface UrlParts {
        hash: string;
        path: string;
        search: Object;
    }
    Index

    Properties

    Properties

    hash: string

    The fragment identifier (everything after #, not including the # itself).

    path: string

    The URL path (e.g. /dashboard, /users/123).

    search: Object

    The parsed query string as an object. Mirrors AngularJS’s $location.setSearch() format.