UNPKG

ui-router-core

Version:

UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps

10 lines (9 loc) 428 B
import { UIRouter } from "../router"; import { BaseLocationServices } from "./baseLocationService"; /** A `LocationServices` that uses the browser hash "#" to get/set the current location */ export declare class HashLocationService extends BaseLocationServices { constructor(router: UIRouter); _get(): any; _set(state: any, title: string, url: string, replace: boolean): void; dispose(router: UIRouter): void; }