UNPKG

431 BTypeScriptView Raw
1import { UIRouter } from '../router';
2import { BaseLocationServices } from './baseLocationService';
3/** A `LocationServices` that uses the browser hash "#" to get/set the current location */
4export 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}