1 | import { BaseLocationServices } from './baseLocationService';
|
2 | import { UIRouter } from '../router';
|
3 | /** A `LocationServices` that gets/sets the current location from an in-memory object */
|
4 | export declare class MemoryLocationService extends BaseLocationServices {
|
5 | _url: string;
|
6 | constructor(router: UIRouter);
|
7 | _get(): string;
|
8 | _set(state: any, title: string, url: string, replace: boolean): void;
|
9 | }
|