build: update public API with readonly (#13294)

PR Close #13294
This commit is contained in:
Alex Eagle
2017-02-07 19:27:01 -08:00
committed by Miško Hevery
parent ef32e6b0d0
commit 7a4c25535d
4 changed files with 155 additions and 161 deletions

View File

@ -231,9 +231,9 @@ export declare class PercentPipe implements PipeTransform {
/** @stable */
export declare abstract class PlatformLocation {
hash: string;
pathname: string;
search: string;
readonly hash: string;
readonly pathname: string;
readonly search: string;
abstract back(): void;
abstract forward(): void;
abstract getBaseHrefFromDOM(): string;