1 | import { UIRouter } from '../router';
|
2 | import { BaseLocationServices } from './baseLocationService';
|
3 | /** A `LocationServices` that uses the browser hash "#" to get/set the current location */
|
4 | export declare class HashLocationService extends BaseLocationServices {
|
5 | constructor(router: UIRouter);
|
6 | _get(): string;
|
7 | _set(state: any, title: string, url: string, replace: boolean): void;
|
8 | dispose(router: UIRouter): void;
|
9 | }
|