style(common): fix short param names (#23667)

PR Close #23667
This commit is contained in:
Pete Bacon Darwin
2018-05-03 09:53:12 +01:00
committed by Kara Erickson
parent 5069c06906
commit 3f43dbb642
6 changed files with 18 additions and 18 deletions

View File

@ -219,7 +219,7 @@ export interface LocationChangeEvent {
/** @experimental */
export interface LocationChangeListener {
(e: LocationChangeEvent): any;
(event: LocationChangeEvent): any;
}
export declare abstract class LocationStrategy {

View File

@ -1695,10 +1695,10 @@ export interface HttpSentEvent {
}
export declare class HttpUrlEncodingCodec implements HttpParameterCodec {
decodeKey(k: string): string;
decodeValue(v: string): string;
encodeKey(k: string): string;
encodeValue(v: string): string;
decodeKey(key: string): string;
decodeValue(value: string): string;
encodeKey(key: string): string;
encodeValue(value: string): string;
}
export interface HttpUserEvent<T> {