interface Location {
    href: string;
    options: {
        [name: string]: string | string[];
    };
    path: string[];
    url_root: string;
    go(path: string | cockpit.Location, options?: {
        [key: string]: string;
    }): void;
    replace(path: string | cockpit.Location, options?: {
        [key: string]: string;
    }): void;
}

Properties

Methods

Properties

href: string
options: {
    [name: string]: string | string[];
}

Type declaration

  • [name: string]: string | string[]
path: string[]
url_root: string

Methods

  • Parameters

    • path: string | cockpit.Location
    • Optional options: {
          [key: string]: string;
      }
      • [key: string]: string

    Returns void

  • Parameters

    • path: string | cockpit.Location
    • Optional options: {
          [key: string]: string;
      }
      • [key: string]: string

    Returns void